Files

23 lines
472 B
PHP
Raw Permalink Normal View History

2019-01-20 08:43:36 -06:00
<?php
namespace App\Models;
2019-01-22 17:04:28 -06:00
class PortsFdb extends PortRelatedModel
2019-01-20 08:43:36 -06:00
{
protected $table = 'ports_fdb';
protected $primaryKey = 'ports_fdb_id';
2019-02-21 13:23:01 +01:00
public $timestamps = true;
2019-01-20 08:43:36 -06:00
// ---- Define Relationships ----
public function device()
{
return $this->belongsTo(\App\Models\Device::class, 'device_id', 'device_id');
2019-01-20 08:43:36 -06:00
}
public function vlan()
{
return $this->belongsTo(\App\Models\Vlan::class, 'vlan_id', 'vlan_id');
2019-01-20 08:43:36 -06:00
}
}