定制 shafayat/permission-checker 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

shafayat/permission-checker

最新稳定版本:v1.0.0

Composer 安装命令:

composer require shafayat/permission-checker

包简介

A package to add,remove and check permission to function or route

README 文档

README

A Laravel package for managing user based permission. This will used to check specific user has necessary permission for doing specific operation. Easy to add,remove and check permission.

Features

  • Add Permission
  • Remove permission
  • Check Permission

Installation

Install permission-checker using composer

  composer require shafayat/permission-checker
  composer install

Usage/Examples

Add Permission

$permissionService = resolve('permission_checker');
$saved = $permissionService->addPermission($userId,"view_posts");

Remove Permission

$permissionService = resolve('permission_checker');
$saved = $permissionService->removePermission($userID,"view_posts");

Check Permission

$permissionService = resolve('permission_checker');
$saved = $permissionService->hasPermission($userID,"view_posts");
 if ( !$hasPermission ) {
        return "You have no permission to access this url";
}

Test

php artisan test

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-12-07