Download the PHP package yaroslavmolchan/rbac without Composer
On this page you can find all versions of the php package yaroslavmolchan/rbac. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download yaroslavmolchan/rbac
More information about yaroslavmolchan/rbac
Files in yaroslavmolchan/rbac
Package rbac
Short Description Simple RBAC/ACL for Laravel 5.5 and more with caching and permission groups.
License MIT
Informations about the package rbac
Laravel RBAC
Simple RBAC/ACL for Laravel 8 and more with caching permissions and permission groups for better convenience.
- Installation
- Usage
- Roles
- Creating Roles
- Attaching And Detaching Roles
- Checking For Roles
- Permissions
- Creating Permissions
- Attaching And Detaching Permissions
- Checking For Permissions
- Permission groups
- Creating Permission groups
- Attaching And Detaching Permissions to Permission group
- Attaching And Detaching Permission groups to Role
- Protected routes
- Blade Extensions
- Roles
- License
Installation
Install this package with composer using the following command:
or you can add to your composer.json
for Laravel 8.0
or if you use Laravel 5.5 use:
then run composer update
.
Add Service Provider to providers
array in config/app.php
file.
Publish migration files
And then run migrations
Add middleware to your app/Http/Kernel.php
file.
Add Rbac trait to your User
model
Usage
Roles
Creating roles
Attaching And Detaching Roles
You can simple attach role to user:
And the same if you want to detach role:
Checking for roles
You can simple check if user has role:
Permissions
Creating permissions
Attaching And Detaching permissions
You can attach permission to role very simple:
And the same to detach permission:
If you want attach or detach array of permissions you can do it:
Checking for permissions
You can simple check if user has permission:
All permissions for each role store in cache, and when you check for permission - it take information from cache, that`s why its works quickly.
Permission groups
Permission groups created for group some permissions in one main group, and then you can attach permission group to role and all permissions in this group attach to this role to. Its very useful thing.
Creating permission groups
Attaching And Detaching Permissions to Permission group
You can add permission to group very simple:
And the same to remove permission from group:
Attaching And Detaching Permission groups to Role
You can attach permission group to role very simple:
And the same to detach permission group:
Protected routes
You can easily protect your routes with role
and permission
params:
Blade Extensions
You can check roles and permissions in Blade like this:
License
Laravel RBAC is open-sourced software licensed under the MIT license