承接 laravolt/acl 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

laravolt/acl

最新稳定版本:4.2.4

Composer 安装命令:

composer require laravolt/acl

包简介

Basic Laravel ACL

README 文档

README

Installation

Composer

composer require laravolt/acl

Service Provider

Skip this step if you are using Laravel 5.5 or above.

Laravolt\Acl\ServiceProvider::class,

Migrations

Publish migration file (optional):

php artisan vendor:publish --provider="Laravolt\Acl\ServiceProvider" --tag=migrations

Run migration:

php artisan migrate

Publish Configuration (Optional)

php artisan vendor:publish --provider="Laravolt\Acl\ServiceProvider" --tag=config

Usage

Add Laravolt\Acl\Traits\HasRoleAndPermission trait to User model:

<?php

namespace App;

use Laravolt\Acl\Traits\HasRoleAndPermission;

class User
{
    use HasRoleAndPermission;
}

After that, User will have following methods:

$user->roles()

Relationships that defines User has many Laravolt\Acl\Models\Role.

$user->hasRole($role, $checkAll = false)

Check if specific User has one or many roles. Return boolean true or false.

$user->assignRole($role)

Assign one or many roles to specific User. Possible values for $role are: id, array of id, role name, Role object, or array of Role object.

$user->revokeRole($role)

Revoke/remove one or many roles from specific User. Possible values for $role are: id, array of id, role name, Role object, or array of Role object.

$user->hasPermission($permission, $checkAll = false)

Check if specific User has one or many permissions. Return boolean true or false.

Command

php artisan laravolt:acl:sync-permission

Bypass Authorization

You can bypass authorization checking using Laravel built-in method:

// Place it somewhere before application running, e.g. in `AppServiceProvider`.
Gate::before(function($user){
    // check if $user superadmin
    // and then return true to skip all authorization checking
});

统计信息

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

GitHub 信息

  • Stars: 7
  • Watchers: 4
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-12-22