25 lines
449 B
PHP
25 lines
449 B
PHP
<?php
|
|
|
|
namespace Modules\ShopFloor\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class DowntimeEvent extends Model
|
|
{
|
|
use BelongsToBusiness;
|
|
|
|
protected $table = 'sf_downtime_events';
|
|
|
|
protected $guarded = ['id'];
|
|
|
|
protected $casts = [
|
|
'started_at' => 'datetime',
|
|
'ended_at' => 'datetime',
|
|
];
|
|
|
|
public function workCenter()
|
|
{
|
|
return $this->belongsTo(WorkCenter::class, 'work_center_id');
|
|
}
|
|
}
|