PHP code example of amiranbari / persian-laravel-menu
1. Go to this page and download the library: Download amiranbari/persian-laravel-menu 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/ */
amiranbari / persian-laravel-menu example snippets
@extends('app')
@section('contents')
{!! Menu::render() !!}
@endsection
//YOU MUST HAVE JQUERY LOADED BEFORE menu scripts
@push('scripts')
{!! Menu::scripts() !!}
@endpush
use Harimayco\Menu\Facades\Menu;
...
/*
Parameter: Menu ID
Return: Array
*/
$menuList = Menu::get(1);
use Harimayco\Menu\Facades\Menu;
...
/*
Parameter: Menu ID
Return: Array
*/
$menuList = Menu::getByName('Admin');
use Harimayco\Menu\Models\Menus;
use Harimayco\Menu\Models\MenuItems;
// Used to get the menu items into the blade template
$public_menu = Menu::getByName('Public');