1. Go to this page and download the library: Download awes-io/navigator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
awes-io / navigator example snippets
// config/navigation.phpreturn [
[
'name' => 'Projects',
'route' => 'projects.index', // route must exist or item will be hidden'children' =>
[
[
'name' => 'New projects',
'link' => '/projects/new', // you can use direct links
]
]
],
[
'name' => 'Packages',
'route' => 'packages.index',
]
];
Route::group(['middleware' => ['can:manage users']], function(){
Route::get('/', 'RoleController@index')->name('admin.roles.index');
});
// will be excluded from the menu for non-admin users
[
'name' => __('navigation.security'),
'icon' => 'twousers',
'route' => 'admin.roles.index',
],