rc1021/laravel-menu-architect 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rc1021/laravel-menu-architect

Composer 安装命令:

composer require rc1021/laravel-menu-architect

包简介

backend menu builder

README 文档

README

Total Downloads License

A quick and easy way to build menus in Laravel

Laravel Menu Architect

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

Display Menu

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

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.

统计信息

  • 总下载量: 39
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 7
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-03-14

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固