LaborReportStatus.php 369 B

1234567891011121314151617
  1. <?php
  2. namespace App;
  3. use App\Traits\ModelTimeFormat;
  4. use Illuminate\Database\Eloquent\Model;
  5. class LaborReportStatus extends Model
  6. {
  7. use ModelTimeFormat;
  8. protected $fillable=[
  9. 'id','status','labor_report_id','created_at',
  10. ];
  11. // public function laborReport(){
  12. // return $this->hasOne('App\LaborReport','id','labor_report_id');
  13. // }
  14. }