1. Go to this page and download the library: Download kebir/menu-generator 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/ */
$current_url = 'http://test.com/page1';
$simple_selector = new Kebir\MenuGenerator\Selector\SimpleUrlSelector($current_url);
$renderer = new Kebir\MenuGenerator\Renderer\HtmlListRenderer($simple_selector);
echo "<ul>";
foreach ($menus as $menu) {
$renderer->render($menu);
}
echo "</ul>";
//Add the service provider
'Kebir\MenuGenerator\MenuGeneratorServiceProvider'
...
//add the facade alias
'MenuRenderer' => 'Kebir\MenuGenerator\Facades\Renderer'
return array(
//To link /users/1/edit to another url /users in the menu.
'linked_urls' => array(
'/users/1/edit' => '/users'
),
//To link an action to an url
'linked_actions' => array(
'UsersController@edit' => '/users'
),
//To link a route to an url
'linked_routes' => array(
'user_edit_path' => '/users'
)
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.