1 | <?php |
||
7 | class Stage extends Base |
||
8 | { |
||
9 | protected $organizationPerspective = false; |
||
10 | |||
11 | protected $table = 'code_stages'; |
||
12 | |||
13 | /** |
||
14 | * The attributes that are mass assignable. |
||
15 | * |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $fillable = [ |
||
19 | 'name', |
||
20 | 'stage_step_id' |
||
21 | ]; |
||
22 | |||
23 | public function stageStep() |
||
27 | |||
28 | public function workflows() |
||
32 | } |
||
33 |