rc1021/laravel-menu-architect
Composer 安装命令:
composer require rc1021/laravel-menu-architect
包简介
backend menu builder
README 文档
README
A quick and easy way to build menus in Laravel
Installation
composer require rc1021/laravel-menu-architect
If you are in Laravel 5.5 you won't need to edit your config/app.php, if you are in a previous version of Laravel, please do the following:
Append Laravel Menu service provider to providers array in config/app.php.
'providers' => [ /* * Laravel Framework Service Providers... */ Illuminate\Foundation\Providers\ArtisanServiceProvider::class, Illuminate\Auth\AuthServiceProvider::class, Illuminate\Broadcasting\BroadcastServiceProvider::class, ... Rc1021\LaravelMenuArchitect\LaravelMenuArchitectServiceProvider::class, ... ],
At the end of config/app.php add 'MenuArct' => Rc1021\LaravelMenuArchitect\Facades\MenuArct::class to the $aliases array:
'aliases' => [ 'App' => Illuminate\Support\Facades\App::class, 'Artisan' => Illuminate\Support\Facades\Artisan::class, ... 'MenuArct' => Rc1021\LaravelMenuArchitect\Facades\MenuArct::class, ],
This registers the package with Laravel and creates an alias called MenuArct.
To use your own settings, publish config.
php artisan vendor:publish --provider="Rc1021\\LaravelMenuArchitect\\LaravelMenuArchitectServiceProvider"
Getting Started
Start up laravel server
php artisan serve
and open http://127.0.0.1:8000/menu_arct get start.
Demo data (seeder)
You can seeder the database first.
php artisan db:seed --class=MenuArchitectSeeder
Finally, open a view and add:
{!! menu_arct('admin') !!}
Your menu will be created and displayed on the page.
Output data
You can also get menu data format by 'array' or 'json', like that:
$arr_menu = menu_arct('admin', '_array'); $json_menu = menu_arct('admin', '_json');
Output display
Custom data method
You can customize some methods to use $menu, $menu->items(relation with menu_id), $items(parent-children).
$customize_func = function ($menu) { // $menu: main menu modal. // $menu->items: items by menu_id. // $menu->buildTree(): get a hierarchical array data.(parent, children) $collection = collect($menu->items); $filtered = $collection->filter(function ($item, $key) { return $item['depth'] == 2 and isset($item['children']); }); return $filtered->all(); } $customize_data = menu_arct('admin', 'key', ['key' => $customize_func]);
Output display with custom view
Now, you can add a view to resources/views/vendor/menu_architect/display to render menu.
if you have a view called your_view.blade.php
// your_view.blade.php // $menu: main menu modal // $menu->items: items by menu_id // $items: Hierarchical array data(parent, children) <ul class="sidebar-menu tree" data-widget="tree"> @foreach ($items as $item) <li class="header {{$item['class']}}" style="{{empty($item['color'])?:'color:'.$item['color']}}">{{$item['label']}}</li> @if(isset($item['children'])) @each('menu_architect::menu.display.adminlte_list', $item['children'], 'item') @endif @endforeach </ul>
and you can do menu_arct('admin', 'your_view') to render result
If You Need Help
Please submit all issues and questions using GitHub issues and I will try to help you.
Contributing
Please feel free to submit pull requests if you can improve or add any features.
Credits
License
Laravel Menu Architect is free software distributed under the terms of the MIT license.
rc1021/laravel-menu-architect 适用场景与选型建议
rc1021/laravel-menu-architect 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 39 次下载、GitHub Stars 达 3, 最近一次更新时间为 2020 年 03 月 14 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 rc1021/laravel-menu-architect 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 rc1021/laravel-menu-architect 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 39
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 10
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-03-14


