25 lines
402 B
PHP
25 lines
402 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class StaffDocument extends Model
|
|
{
|
|
protected $table = 'staff_documents';
|
|
|
|
protected $fillable = [
|
|
'staff_id',
|
|
'name',
|
|
'document_number',
|
|
'expiry_date',
|
|
'path',
|
|
'reminder_days',
|
|
];
|
|
|
|
public function staff()
|
|
{
|
|
return $this->belongsTo(Staff::class);
|
|
}
|
|
}
|