shah-newaz / permissible-ng
Role Permission system for Laravel 11+
v3.0.0
2025-03-02 21:01 UTC
Requires
- php: ^8.2
- laravel/framework: ^11 | ^12
- tymon/jwt-auth: ^2.1
- vlucas/phpdotenv: ^v5.6
Requires (Dev)
- phpunit/phpunit: ^9.0
- dev-master
- v3.0.0
- v2.4.2
- v2.4.1
- v2.4.0
- v2.3.9
- v2.3.8
- v2.3.7
- v2.3.6
- v2.3.5
- v2.3.4
- v2.3.3
- v2.3.2
- v2.3.1
- v2.3.0
- v2.2.9
- v2.2.8
- v2.2.7
- v2.2.6
- v2.2.5
- v2.2.4
- v2.2.3
- v2.2.2
- v2.2.1
- v2.2.0
- v2.1.9
- v2.1.8
- v2.1.7
- v2.1.6
- v2.1.5
- v2.1.4
- v2.1.3
- v2.1.2
- v2.1.1
- v2.1.0
- v2.0.9
- v2.0.8
- v2.0.7
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
This package is auto-updated.
Last update: 2025-03-30 21:10:10 UTC
README
A flexible and powerful Laravel package for managing roles and permissions with hierarchical support.
Features
- Role-based access control (RBAC)
- Hierarchical roles with weight-based inheritance
- Permission management
- Route middleware for roles and permissions
- Caching support for optimal performance
- Soft delete support
Installation
composer require shah-newaz/permissible-ng
php artisan vendor:publish --provider="Shahnewaz\PermissibleNg\Providers\PermissibleServiceProvider"
Run the migrations:
php artisan migrate
Usage
Setup User Model
Add the Permissible
trait to your User model:
use Shahnewaz\PermissibleNg\Traits\Permissible; class User extends Authenticatable { use Permissible; // ... rest of your User model }
Note: This can be done using the permissible:setup
command automatically.
Managing Roles and Permissions
// Create a role $role = Role::create([ 'name' => 'Admin', 'code' => 'admin', 'weight' => 1 ]); // Create a permission $permission = Permission::createPermission('users.create'); // Assign permission to role $role->permissions()->attach($permission); // Assign role to user $user->roles()->attach($role);
Checking Permissions
// Check single permission $user->hasPermission('users.create'); // Check multiple permissions (requires all) $user->hasPermissions(['users.create', 'users.delete']); // Check permission type $user->hasPermissionType('users');
Route Protection
Use the elegant route middleware syntax:
// Protect routes with roles Route::get('/admin/dashboard', [DashboardController::class, 'index']) ->roles(['admin', 'super-admin']); // Protect routes with permissions Route::get('/users', [UserController::class, 'index']) ->permissions(['users.view']); // Combine both Route::get('/users/create', [UserController::class, 'create']) ->roles(['admin']) ->permissions(['users.create']);
Route Group Protection
Route::group(['middleware' => ['roles:su,admin']], function () { Route::get('/admin/dashboard', [DashboardController::class, 'index']); });
Permission Wildcards
Use wildcards for broader permission control:
// Grant all user permissions Permission::createPermission('users.*'); // Check if user has any user permission $user->hasPermissionType('users');
Configuration
The package configuration can be modified in config/permissible.php
:
return [ 'enable_routes' => true, 'enable_user_management_routes' => true, 'first_last_name_migration' => true, 'default_fallback_route' => 'backend.dashboard', ];
License
The MIT License (MIT). Please see License File for more information.