LAR_Maintenance/app/View/Components/Navigation.php

32 lines
753 B
PHP
Raw Normal View History

2024-07-30 16:13:21 +00:00
<?php
namespace App\View\Components;
use App\Menus\MainMenu;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
use SteelAnts\LaravelBoilerplate\Facades\Menu;
class Navigation extends Component
{
/**
* Create a new component instance.
*/
public function __construct()
{
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.navigation', [
'mainMenuItems' => Menu::get('main-menu')->items() ?? [],
2024-07-31 15:04:33 +00:00
'settingsMenuItems' => Menu::get('settings-menu')->items() ?? [],
2024-07-30 16:13:21 +00:00
'systemMenuItems' => Menu::get('system-menu')->items() ?? [],
]);
}
}