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