tyondo/menu-generator
Composer 安装命令:
composer require tyondo/menu-generator
包简介
Backend navigation menu generator for Laravel 5.3 and 5.4.
README 文档
README
For below laravel 5.5
register the Service provider Tyondo\MenuGenerator\TyondoMenuGeneratorServiceProvider::class,
The service prover is autoloaded in laravel 5.5 ##usage
{!! GenerateMenu::generateMenu(config('tyondo_menu_generator.navigation')) !!}
or
{!! GenerateMenu::generateMenu(config('tyondo_menu_generator.navigation',view.template)) !!}
then publish the config file:
php artisan vendor:publish
###Sample Menu
'navigation' => [
[
'type' => 'single',
'title' => 'Dashboard',
'class' => 'fa fa-fw fa-home fa-lg',
'route' => 'gentella.home',
],
[
'type' => 'group',
'group' => 'Assessment',
'class' => 'fa fa-cubes fa-lg',
'links' => [
[
'title' => 'Personal Information',
'class' => 'fa fa-fw fa-plus',
'route' => 'admin.personal.information.index'
],
[
'title' => 'Personal Assessment',
'class' => 'fa fa-fw fa-th-list',
'route' => 'admin.personal.assessment.index'
],
'separator',
[
'title' => 'Training Needs',
'class' => 'fa fa-fw fa-table',
'route' => 'admin.training.assessment.index'
],
]
],
],
统计信息
- 总下载量: 192
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 1
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-03-06