agmar/role

本包最新版本(1.0.7)的许可证信息不可用。

基于codecourse教程的角色权限包

1.0.7 2017-04-12 14:51 UTC

This package is not auto-updated.

Last update: 2024-09-23 15:15:35 UTC


README

使用以下方法下载包

composer require agmar/role

从 vendor/agmar/role/migrations 复制迁移文件到您的应用程序文件夹中的 migrations 文件夹,然后运行 laravel migration

注册服务提供者

Agmar\Role\AgmarRoleServiceProvider::class,

在 App\Http\Kernel.php 中注册中间件

'role'=>\Agmar\Role\Middleware\RoleMiddleware::class,

将 hasPermissionsTrait 添加到您的 User 模型中

use Agmar\Role\Permissions\hasPermissionsTrait;

...并在用户模型内部使用它

class User extends Authenticatable
{
    use hasPermissionsTrait;
}