Total Complexity | 2 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class TechTip extends Model |
||
10 | { |
||
11 | use HasFactory; |
||
12 | |||
13 | protected $primaryKey = 'tip_id'; |
||
14 | protected $guarded = ['tip_id', 'created_at', 'updated_at']; |
||
15 | protected $hidden = ['deleted_at', 'tip_type_id', 'updated_id', 'user_id']; |
||
16 | protected $appends = ['summary']; |
||
17 | protected $casts = [ |
||
18 | 'created_at' => 'datetime:M d, Y', |
||
19 | 'updated_at' => 'datetime:M d, Y', |
||
20 | ]; |
||
21 | |||
22 | public function getSummaryAttribute() |
||
25 | } |
||
26 | |||
27 | public function EquipmentType() |
||
32 |