| 1 | <?php  | 
            ||
| 7 | class Location extends Model  | 
            ||
| 8 | { | 
            ||
| 9 | /**  | 
            ||
| 10 | * The attributes that are mass assignable.  | 
            ||
| 11 | *  | 
            ||
| 12 | * @var array  | 
            ||
| 13 | */  | 
            ||
| 14 | protected $fillable = [  | 
            ||
| 15 | 'name', 'site_id'  | 
            ||
| 16 | ];  | 
            ||
| 17 | |||
| 18 | public $timestamps = false;  | 
            ||
| 19 | |||
| 20 | /**  | 
            ||
| 21 | * Get the site for the location  | 
            ||
| 22 | */  | 
            ||
| 23 | public function site()  | 
            ||
| 27 | |||
| 28 | /**  | 
            ||
| 29 | * Get devices for the location  | 
            ||
| 30 | */  | 
            ||
| 31 | public function devices()  | 
            ||
| 35 | }  | 
            ||
| 36 |