Files

23 lines
461 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';
public $timestamps = false;
// ---- Define Relationships ----
public function device()
{
return $this->belongsTo('App\Models\Device', 'device_id', 'device_id');
}
public function vlan()
{
return $this->belongsTo('App\Models\Vlan', 'vlan_id', 'vlan_id');
}
}