Total Complexity | 1 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php namespace H4ad\Scheduler\Models; |
||
15 | class ScheduleStatus extends Model |
||
16 | { |
||
17 | use SoftDeletes; |
||
18 | |||
19 | /** |
||
20 | * Os atributos que podem ser atribuíveis em massa. |
||
21 | * |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $fillable = [ |
||
25 | 'name', 'description' |
||
26 | ]; |
||
27 | |||
28 | /** |
||
29 | * Os atributos que devem ser transformados para data. |
||
30 | * |
||
31 | * @var array |
||
32 | */ |
||
33 | protected $dates = [ |
||
34 | 'deleted_at' |
||
35 | ]; |
||
36 | |||
37 | /** |
||
38 | * Construtor para inicilizar a váriavel table. |
||
39 | */ |
||
40 | public function __construct(array $attributes = []) |
||
45 | } |
||
46 | } |