'int'
];
protected $fillable = [
'name',
'handling_days',
'color'
];
public function getStatusBadge()
{
$color = $this->color;
$icon = "";
if($this->id == 14){
$icon = ' ';
}
if($this->id == 15){
$icon = ' ';
}
return ''.$icon.$this->name.'';
}
/*public function status_histories()
{
return $this->hasMany(StatusHistory::class);
}*/
}