laravel-layui-admin 发布,基于 Laravel、Layui 的后台

栏目: 软件资讯 · 发布时间: 5年前

内容简介:Laravel-layui-admin 基于 Laravel、Layui 构建的 RABC 基础后台管理系统。 截图 要求 最低支持 laravel5.8 , 支持 6.0 安装 首先安装laravel, 并且确保你配置了正确的数据库连接。 composer require moell/lar...

Laravel-layui-admin

基于 Laravel 、Layui 构建的 RABC 基础后台管理系统。

截图

laravel-layui-admin 发布,基于 Laravel、Layui 的后台

要求

  • 最低支持 laravel5.8 , 支持 6.0

安装

首先安装laravel, 并且确保你配置了正确的数据库连接。

composer require moell/laravel-layui-admin

然后运行下面的命令来发布资源和配置:

php artisan laravel-layui-admin:install

config/auth.php中添加相应的 guards 和 providers,如下:

    'guards' => [
        ...
        'admin' => [
            'driver' => 'session',
            'provider' => 'admin'
        ]
    ],

    'providers' => [
        ...
        'admin' => [
            'driver' => 'eloquent',
            'model' => \Moell\LayuiAdmin\Models\AdminUser::class,
        ]
    ],

在 app/Http/Kernel.php 中 $routeMiddleware 属性添加路由中间admin.permission 和替换 auth 中间件:

class Kernel extends HttpKernel
{
    protected $routeMiddleware = [
    	//'auth' => \App\Http\Middleware\Authenticate::class,
        'auth' => \Moell\LayuiAdmin\Http\Middleware\Authenticate::class,
        ...
        'admin.permission' => \Moell\LayuiAdmin\Http\Middleware\Authenticate::class,
    ];
}

执行数据迁移,数据填充

php artisan migrate

php artisan db:seed --class="Moell\LayuiAdmin\Database\LayuiAdminTableSeeder"

登录

url: http://localhost/admin/login

email: admin@gmail.com

password: secret

依赖开源软件

  • Laravel
  • Layui
  • spatie/laravel-permission

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Nine Algorithms That Changed the Future

Nine Algorithms That Changed the Future

John MacCormick / Princeton University Press / 2011-12-27 / GBP 19.95

Every day, we use our computers to perform remarkable feats. A simple web search picks out a handful of relevant needles from the world's biggest haystack: the billions of pages on the World Wide Web.......一起来看看 《Nine Algorithms That Changed the Future》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具