| 1234567891011121314151617 |
- <?php
- namespace App;
- use App\Traits\ModelTimeFormat;
- use Illuminate\Database\Eloquent\Model;
- class LaborReportStatus extends Model
- {
- use ModelTimeFormat;
- protected $fillable=[
- 'id','status','labor_report_id','created_at',
- ];
- // public function laborReport(){
- // return $this->hasMany('App\LaborReport','id','labor_report_id');
- // }
- }
|