| 1 | <?php |
||
| 9 | class Device extends Model |
||
| 10 | { |
||
| 11 | use SoftDeletes; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * The attributes that are mass assignable. |
||
| 15 | * |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $fillable = [ |
||
| 19 | 'name', 'location_id' |
||
| 20 | ]; |
||
| 21 | |||
| 22 | public $timestamps = false; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Get the location for the device |
||
| 26 | */ |
||
| 27 | public function location() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Get the site for the device |
||
| 34 | */ |
||
| 35 | public function site() |
||
| 39 | } |
||
| 40 |