Files
librenms-librenms/app/Models/Vlan.php
Peca Nesovanovic 08dd8a07db Mikrotik vlans discovery, v2 (#13427)
* Mikrotik vlans discovery, v2

* styleci cleanup

* added Routeros entry in mkdocs.yml

* fixed typo in mkdocs.yml

* Better Vlan Eloquent Model

* Missed one

* Use new SnmpQuery code

Co-authored-by: Tony Murray <murraytony@gmail.com>
2021-10-26 18:31:44 -05:00

18 lines
305 B
PHP

<?php
namespace App\Models;
class Vlan extends DeviceRelatedModel
{
protected $primaryKey = 'vlan_id';
public $timestamps = false;
protected $fillable = [
'device_id',
'vlan_vlan',
'vlan_domain',
'vlan_name',
'vlan_type',
'vlan_mtu',
];
}