Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class CustomerEquipment extends Model |
||
10 | { |
||
11 | use HasFactory; |
||
12 | use SoftDeletes; |
||
13 | |||
14 | protected $primaryKey = 'cust_equip_id'; |
||
15 | protected $guarded = ['cust_equip_id', 'updated_at', 'created_at']; |
||
16 | protected $hidden = ['created_at', 'updated_at', 'deleted_at', 'cust_id']; |
||
17 | protected $appends = ['name']; |
||
18 | protected $casts = [ |
||
19 | 'shared' => 'boolean', |
||
20 | 'deleted_at' => 'datetime:M d, Y', |
||
21 | ]; |
||
22 | |||
23 | /* |
||
24 | * Get the name of the equipment without attaching the entire equipment object |
||
25 | */ |
||
26 | 5 | public function getNameAttribute() |
|
27 | { |
||
28 | 5 | return EquipmentType::find($this->equip_id)->name; |
|
29 | } |
||
30 | |||
31 | /* |
||
32 | * Site specific information for the selected piece of equipment |
||
33 | */ |
||
34 | 2 | public function CustomerEquipmentData() |
|
37 | } |
||
38 | } |
||
39 |