| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class DataField extends Model |
||
| 9 | { |
||
| 10 | use HasFactory; |
||
| 11 | |||
| 12 | protected $primaryKey = 'field_id'; |
||
| 13 | protected $fillable = ['equip_id', 'type_id', 'order']; |
||
| 14 | protected $hidden = ['updated_at', 'created_at']; |
||
| 15 | |||
| 16 | /* |
||
| 17 | * Name of the data field that is attached to this equipment type |
||
| 18 | */ |
||
| 19 | 2 | public function DataFieldType() |
|
| 24 |