staffmanager/app/StaffProfile.php

19 lines
253 B
PHP
Raw Permalink Normal View History

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class StaffProfile extends Model
{
public $fillable = [
'userID',
'approvalDate',
'terminationDate',
'resignationDate',
'memberNotes'
];
}