florida_gym/app/Models/StaffDocument.php
2026-03-11 11:03:12 +05:30

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);
}
}