Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
305 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 Vlan extends DeviceRelatedModel
2019-01-20 08:43:36 -06:00
{
2021-10-27 01:31:44 +02:00
protected $primaryKey = 'vlan_id';
2019-01-20 08:43:36 -06:00
public $timestamps = false;
2021-10-27 01:31:44 +02:00
protected $fillable = [
'device_id',
'vlan_vlan',
'vlan_domain',
'vlan_name',
'vlan_type',
'vlan_mtu',
];
2019-01-20 08:43:36 -06:00
}