Files
librenms-librenms/app/Models/PortVlan.php
Jellyfrog 3bfafc857f Convert Device>vlan view to Laravel (#12163)
* Convert Device>vlan view to Laravel
2020-10-14 19:40:44 -05:00

22 lines
404 B
PHP

<?php
namespace App\Models;
class PortVlan extends PortRelatedModel
{
protected $table = 'ports_vlans';
protected $primaryKey = 'port_vlan_id';
public $timestamps = false;
public function getUntaggedAttribute($value)
{
if (! $value) {
if ($this->vlan == $this->port->ifVlan) {
$value = 1;
}
}
return $value;
}
}