PHP code example of jncinet / qihucms-menu

1. Go to this page and download the library: Download jncinet/qihucms-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/ */

    

jncinet / qihucms-menu example snippets


route('api.menu.index')
请求:GET
地址:/menu/menus?uri={添加菜单时设置的标识,可选}
参数:
int          $pay_type_id      (选填)支付货币类型
int          $exchange_type_id (选填)兑换货币类型
string       $name             (选填)根据礼物名模糊查询
int          $page             (选填)页码
int          $limit            (选填)每页显示的条数
返回值:
[
    {
        id:1,
        uri:'标识'
        block:块标识
        title:名称
        icon:图标
        url:链接地址
        sort:排序
        show_title: true, // 是否显示名称,
        show_icon: true, // 是否显示图标,
        show_h5: true, // H5端是否显示,
        show_mini_app: true, // 小程序端是否显示,
        show_app: true, // APP端是否显示,
    },
    ...
]
shell
$ php artisan migrate
shell
$ php artisan vendor:publish --provider="Qihucms\Menu\MenuServiceProvider"