mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Adding a NAC global port page * style * filter_menu_entry * typo * ->when() * device_id always returned * use request * laravel conversion, let see how it goes * styleci * ->with('device') to avoid 1 query per item processed * and rewrote on @murrant advice * any -> get Suggested by @murrant Co-authored-by: Tony Murray <murraytony@gmail.com> * @push('scripts') * style * @endpush --------- Co-authored-by: Tony Murray <murraytony@gmail.com>
14 lines
179 B
PHP
14 lines
179 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class NacController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$data = [];
|
|
|
|
return view('nac', $data);
|
|
}
|
|
}
|