Files
GSB-Construction/Modules/DailyReports/app/Models/DailyReportLabor.php

23 lines
432 B
PHP

<?php
namespace Modules\DailyReports\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class DailyReportLabor extends Model
{
protected $fillable = [
'daily_report_id',
'trade',
'workers_count',
'hours',
'notes',
];
public function dailyReport(): BelongsTo
{
return $this->belongsTo(DailyReport::class);
}
}