<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class TimesheetNotification extends Model
{
    use HasFactory;
    protected $table = 'timesheet_notification';
    protected $fillable = [
        'project_id', 'worker_id',
        'timesheet_id','message',
        'date','is_read'
    ];
}
