Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class MapCategory extends BaseModel |
||
8 | { |
||
9 | protected $table = 'map_categories'; |
||
10 | |||
11 | protected $fillable = ['name', 'display_name']; |
||
12 | |||
13 | protected $dates = ['created_at', 'updated_at']; |
||
14 | |||
15 | protected $dateFormat ='Y-m-d H:i:s'; |
||
16 | |||
17 | public function getCreatedAtAttribute($value) |
||
20 | } |
||
21 | |||
22 | public function getUpdatedAtAttribute($value) |
||
25 | } |
||
26 | } |