Download the PHP package three72/laravel-roles without Composer
On this page you can find all versions of the php package three72/laravel-roles. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download three72/laravel-roles
More information about three72/laravel-roles
Files in three72/laravel-roles
Package laravel-roles
Short Description Powerful package for handling roles and permissions in Laravel 5
License MIT
Informations about the package laravel-roles
Roles And Permissions For Laravel 5
Powerful package for handling roles and permissions in Laravel 5. Based on original package: romanbican/roles
- Installation
- Composer
- Service Provider
- Config File And Migrations
- HasRoleAndPermission Trait And Contract
- Usage
- Creating Roles
- Attaching And Detaching Roles
- Checking For Roles
- Levels
- Creating Permissions
- Attaching And Detaching Permissions
- Checking For Permissions
- Permissions Inheriting
- Entity Check
- Blade Extensions
- Middleware
- Config File
- More Information
- License
Installation
This package is very easy to set up. There are only couple of steps.
Composer
Pull this package in through Composer (file composer.json
).
If you are still using Laravel 5.0, you must pull in version
1.7.*
.
Run this command inside your terminal.
composer update
Service Provider
Add the package to your application service providers in config/app.php
file.
Config File And Migrations
Publish the package config file and migrations to your application. Run these commands inside your terminal.
php artisan vendor:publish --provider="Bican\Roles\RolesServiceProvider" --tag=config
php artisan vendor:publish --provider="Bican\Roles\RolesServiceProvider" --tag=migrations
And also run migrations.
php artisan migrate
This uses the default users table which is in Laravel. You should already have the migration file for the users table available and migrated.
HasRoleAndPermission Trait And Contract
Include HasRoleAndPermission
trait and also implement HasRoleAndPermission
contract inside your User
model.
And that's it!
Usage
Creating Roles
Because of
Slugable
trait, if you make a mistake and for example leave a space in slug parameter, it'll be replaced with a dot automatically, because ofstr_slug
function.
Attaching And Detaching Roles
It's really simple. You fetch a user from database and call attachRole
method. There is BelongsToMany
relationship between User
and Role
model.
Checking For Roles
You may now check if the user has required role.
You may also do this:
And of course, there is a way to check for multiple roles:
Levels
When you are creating roles, there is optional parameter level
. It is set to 1
by default, but you may overwrite it and then you may do something like this:
If user has multiple roles, method
level
returns the highest one.
Level
has also big effect on inheriting permissions. About it later.
Creating Permissions
It's very simple thanks to Permission
model.
Attaching And Detaching Permissions
You can attach permissions to a role or directly to a specific user (and of course detach them as well).
Checking For Permissions
Permissions Inheriting
Role with higher level is inheriting permission from roles with lower level.
There is an example of this magic
:
You have three roles: user
, moderator
and admin
. User has a permission to read articles, moderator can manage comments and admin can create articles. User has a level 1, moderator level 2 and admin level 3. It means, moderator and administrator has also permission to read articles, but administrator may manage comments as well.
If you don't want permissions inheriting feature in you application, simply ignore
level
parameter when you're creating roles.
Entity Check
Let's say you have an article and you want to edit it. This article belongs to a user (there is a column user_id
in articles table).
This condition checks if the current user is the owner of article. If not, it will be looking inside user permissions for a row we created before.
Blade Extensions
There are four Blade extensions. Basically, it is replacement for classic if statements.
Middleware
This package comes with VerifyRole
, VerifyPermission
and VerifyLevel
middleware. You must add them inside your app/Http/Kernel.php
file.
Now you may easily protect your routes.
It throws \Bican\Roles\Exceptions\RoleDeniedException
, \Bican\Roles\Exceptions\PermissionDeniedException
or \Bican\Roles\Exceptions\LevelDeniedException
exceptions if it goes wrong.
You may catch these exceptions inside app/Exceptions/Handler.php
file and do whatever you want.
Config File
You may change connection for models, slug separator, models path and there is also a handy pretend feature. Have a look at config file for more information.
More Information
For more information, please have a look at HasRoleAndPermission contract.
License
This package is free software distributed under the terms of the MIT license.