Total Complexity | 1 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | class ExperienceCommunity extends BaseModel |
||
25 | { |
||
26 | protected $casts = [ |
||
27 | 'title' => 'string', |
||
28 | 'group' => 'string', |
||
29 | 'project' => 'string', |
||
30 | 'is_active' => 'boolean', |
||
31 | 'start_date' => 'date', |
||
32 | 'end_date' => 'date' |
||
33 | ]; |
||
34 | |||
35 | protected $fillable = [ |
||
36 | 'title', |
||
37 | 'group', |
||
38 | 'project', |
||
39 | 'is_active', |
||
40 | 'start_date', |
||
41 | 'end_date' |
||
42 | ]; |
||
43 | |||
44 | protected $table = 'experiences_community'; |
||
45 | |||
46 | public function experienceable() //phpcs:ignore |
||
51 |