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