Download the PHP package riteshjha/laravel-permission without Composer
On this page you can find all versions of the php package riteshjha/laravel-permission. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download riteshjha/laravel-permission
More information about riteshjha/laravel-permission
Files in riteshjha/laravel-permission
Package laravel-permission
Short Description Laravel role and user based permission
License MIT
Informations about the package laravel-permission
Laravel Permission (Account and Owner Level Check)
This package allows you to manage user permissions in a database using role and direct user based permission with Account (Organization) level and owner level permission check. It handle 2 types of abilities (route ability and field ability).
Installation
-
Require it with Composer
-
You can publish the migrations, views, assets and the config file with:
-
Add the service provider in your config/app.php file:
-
This package publishes a file. Check this file and change accourding to your needs for different (Ability, Role and User) model name and other config options.
- Run migrations:
Configuration
-
First configure models namesapce in
-
Add trait to your User model and to Role model.
- All model that you want to include in permission should implements interface and add trait.
Ability
Package handle 2 types of ability (route ability and field ability). Package parse Auth route (route which has auth middleware) and store route name as a Route Ability. For field ability, you have to define it in your model like this:
class Project extends Model
{
protected $fieldAbilities = ['cost', 'estimated_cost'] ; //list projects table fields on which you want to apply permission
}
You can use in your seeder to alow default field ability. For details check in tests.
Role and Ability Group
Role and Ability is divided in 2 groups (SYSTEM and ACCOUNT). All admin users that mange admin tasks will under SYSTEM group role. All users that signup or login as front end user will under ACCOUNT group. Similarly All ability (route name) which is used for admin interface will be under SYSTEM group and all ability which is used for front-end will be under ACCOUNT group. To disable it change to true in config.
Sync Ability
php artisan ability:record // if need fresh then add --fresh
Admin Interface
There is an admin interface with routes and views for handling ability and permissions. You have to add package routes in your admin route group.
Route::group(['middleware' => ['auth'], 'prefix' => 'admin'], function () {
Permission::routes();
});
Now you can access permission interface via routes
Note: If you use admin routes prefix other than 'admin' then change value in
Usage
Package use laravel gate, so you can use in view and in controller for route ability. And for field ability in view. Here projects is a table name.
For Details check Tests
Create/Update
When creating or updating record in model then filter data using method like :
$data = Project::filterFieldAccess($data)