1. Go to this page and download the library: Download rlb/laravel-menu-manager library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use Harimayco\Menu\Models\Menus;
use Harimayco\Menu\Models\MenuItems;
// Obter o menu por ID
$menu = Menus::find(1);
// Ou por nome
$menu = Menus::where('name','Test Menu')->first();
// Ou obtenha o menu pelo nome e os itens (RECOMENDADO para melhor desempenho e menos chamadas de consulta)
$menu = Menus::where('name','Test Menu')->with('items')->first();
// Ou acesse
$menu = Menus::where('id', 1)->with('items')->first();
// Acessar o resultado
$public_menu = $menu->items;
// Ou converta em array
$public_menu = $menu->items->toArray();