Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class CustomerEquipmentData extends Model |
||
9 | { |
||
10 | use HasFactory; |
||
11 | |||
12 | protected $guarded = ['id', 'created_at', 'updated_at']; |
||
13 | protected $hidden = ['cust_equip_id', 'field_id', 'created_at', 'updated_at']; |
||
14 | protected $appends = ['field_name']; |
||
15 | |||
16 | /* |
||
17 | * The name of the field this value data belongs to |
||
18 | */ |
||
19 | public function getFieldNameAttribute() |
||
24 |