laraditz/permission-plus
Composer 安装命令:
composer require laraditz/permission-plus
包简介
Laravel permission management for the lazy.
README 文档
README
Laravel permission management for the lazy. The permission plus is a RRBAC (Role/Route Based Access Control) which is a method to restrict access control based on the application routes and roles. (Warning: This package is still in an early stage of development and may contain bugs).
Prerequisites
- PHP 8.0+
- Laravel v8.0+
- Spatie Laravel Permission V5
Installation
You can install the package via composer:
composer require laraditz/permission-plus
If you don't have one, you may create a new user account to be able to access the permission plus page. Use Laravel starter kits to get ur application up and running in no time.
Setup
Run the migration command to create the necessary database table.
php artisan migrate
Add HasPermissionPlus trait to your User model.
use Laraditz\PermissionPlus\Traits\HasPermissionPlus; class User extends Authenticatable { use HasPermissionPlus; }
(Optional) You can publish the config file via this command:
php artisan vendor:publish --provider="Laraditz\PermissionPlus\PermissionPlusServiceProvider" --tag="config"
Usage
After login, go to /permission-plus/permissions to manage your permission and you will see below page. You may click Generate button to generate all routes in your applications to start adding permissions.
Repeat the step if you add more routes.
Deploy to production
By default, all App\Models\Users can access Permission Page locally. To allow them to access Permission Page in production, you must take a few extra steps to ensure that only the correct users have access to the page.
To set up your App\Models\User to access Permission Page in non-local environments, you must overwrite the canAccessPermissionPlus method.
public function canAccessPermissionPlus(): bool { // example return str_ends_with($this->email, '@yourdomain.com') && $this->hasVerifiedEmail(); }
To Do
- Add search
- Add documentation
- Add test
- Permission for resource owner
- Auto-detect available routes
- Make a more user-friendly UI
- Optimize layout for mobile view
- Add permission for individual user
- Refactor code
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email raditzfarhan@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
laraditz/permission-plus 适用场景与选型建议
laraditz/permission-plus 是一款 基于 Blade 开发的 Composer 扩展包,目前已累计 31 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 02 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laraditz」 「permission-plus」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 laraditz/permission-plus 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 laraditz/permission-plus 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 laraditz/permission-plus 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel package for interacting with TikTok API.
Hierarchical or tree database implementation using path enumeration model
A simple laravel package for Experian.
Simple laravel package for Gkash Payment Gateway.
A simple virtual wallet or e-wallet for Laravel
Simple laravel package for Payex Payment Gateway.
统计信息
- 总下载量: 31
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 36
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-02-24

