<?php

namespace App\Models;

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

class ProjectWorkersTimesheet extends Model
{
    use HasFactory, SoftDeletes;
    protected $table = 'project_workers_timesheet';
    protected $fillable = [
        'project_worker_id',
        'worker_id',
        'worker_type',
        'rate',
        'total_hours',
        'date',
        'time_in',
        'total_billing_per_day',
        'time_out',
        'status',
        'request_modification_message',
        'requested_by',
        'approved_by',
        'worker_items',
        'additional_info'
    ];
}
