mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Global VLAN ports page * Show a list of devices too * Fix a little theme color issues * oops * Just put css in the theme * Apply fixes from StyleCI --------- Co-authored-by: Tony Murray <murrant@users.noreply.github.com> Co-authored-by: Neil Lathwood <gh+n@laf.io>
20 lines
402 B
PHP
20 lines
402 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Vlan;
|
|
use Illuminate\Contracts\View\View;
|
|
|
|
class VlansController extends Controller
|
|
{
|
|
public function index(): View
|
|
{
|
|
return view('vlans.index', [
|
|
'vlanIds' => Vlan::distinct()
|
|
->where('vlan_vlan', '>', 0)
|
|
->orderBy('vlan_vlan')
|
|
->pluck('vlan_vlan'),
|
|
]);
|
|
}
|
|
}
|