Files
ERP-upgrade/app/Models/DailyReport.php
2026-09-08 08:01:08 +00:00

18 lines
331 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class DailyReport extends Model
{
protected $fillable = ['user_id', 'report_date', 'content'];
protected $casts = [
'report_date' => 'date',
];
public function user()
{
return $this->belongsTo(StaffMember::class);
}
}