| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class EquipmentCategory extends Model |
||
| 9 | { |
||
| 10 | use HasFactory; |
||
| 11 | |||
| 12 | protected $primaryKey = 'cat_id'; |
||
| 13 | protected $fillable = ['name']; |
||
| 14 | protected $hidden = ['updated_at', 'created_at']; |
||
| 15 | |||
| 16 | /* |
||
| 17 | * Each Equipment Category can have several types of equipment assigned to it |
||
| 18 | */ |
||
| 19 | 1 | public function EquipmentType() |
|
| 24 |