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
其他信息
- 授权协议: MIT
- 更新时间: 2024-12-07