1 | <?php |
||
8 | class StatusCheck extends Model |
||
9 | { |
||
10 | use HasFactory; |
||
11 | |||
12 | /** |
||
13 | * StatusCheck constructor. |
||
14 | * @param array $attributes |
||
15 | */ |
||
16 | public function __construct(array $attributes = []) |
||
21 | |||
22 | /** |
||
23 | * @var string[] |
||
24 | */ |
||
25 | protected $casts = [ |
||
26 | 'results' => 'array' |
||
27 | ]; |
||
28 | |||
29 | /** |
||
30 | * @var array|string[] |
||
31 | */ |
||
32 | protected $fillable = [ |
||
33 | 'group_id', |
||
34 | 'name', |
||
35 | 'results', |
||
36 | 'status', |
||
37 | ]; |
||
38 | |||
39 | } |
||
40 |