2020-04-29 17:15:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class StaffProfile extends Model
|
|
|
|
{
|
2020-05-29 23:20:39 +00:00
|
|
|
public $fillable = [
|
|
|
|
|
|
|
|
'userID',
|
|
|
|
'approvalDate',
|
|
|
|
'terminationDate',
|
|
|
|
'resignationDate',
|
|
|
|
'memberNotes'
|
|
|
|
|
|
|
|
];
|
2020-04-29 17:15:54 +00:00
|
|
|
}
|