Files

11 lines
188 B
PHP
Raw Permalink Normal View History

2020-04-16 09:19:58 -05:00
<?php
namespace App\Models;
class PortVlan extends PortRelatedModel
{
protected $table = 'ports_vlans';
protected $primaryKey = 'port_vlan_id';
public $timestamps = false;
}