18 lines
354 B
PHP
Executable File
18 lines
354 B
PHP
Executable File
<?php
|
|
|
|
class Statuslabel extends Elegant
|
|
{
|
|
protected $table = 'status_labels';
|
|
protected $softDelete = true;
|
|
|
|
protected $rules = array(
|
|
'name' => 'required|alpha_space|min:2|max:100|unique:status_labels,name,{id}',
|
|
);
|
|
|
|
public function has_assets()
|
|
{
|
|
return $this->hasMany('Asset', 'status_id')->count();
|
|
}
|
|
|
|
}
|