2021-07-04 11:47:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class SystemZone extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'system_zone';
|
2021-08-13 12:53:59 +00:00
|
|
|
public $timestamps = FALSE;
|
2021-07-04 11:47:23 +00:00
|
|
|
|
|
|
|
public function system()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(System::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function zone()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Zone::class);
|
|
|
|
}
|
|
|
|
}
|