PHPackages                             amonray/laravel-rbac - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. amonray/laravel-rbac

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

amonray/laravel-rbac
====================

Role based access control for Laravel 5+

0.3(4y ago)048MITPHPPHP &gt;=5.5.9

Since Jan 3Pushed 4y agoCompare

[ Source](https://github.com/AmonRay/laravel-rbac)[ Packagist](https://packagist.org/packages/amonray/laravel-rbac)[ RSS](/packages/amonray-laravel-rbac/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (5)Used By (0)

Laravel RBAC
============

[](#laravel-rbac)

Super simple RBAC/ACL implementation for Laravel 5+.

Installation
------------

[](#installation)

Require this package with composer ([Packagist](https://packagist.org/packages/amonray/laravel-rbac)) using the following command

```
composer require amonray/laravel-rbac

```

or modify your `composer.json`

```
"require": {
    ...
    "amonray/laravel-rbac": "^0.3"
}

```

then run `composer update`.

After installation register the ServiceProvider to the `providers` array in `config/app.php`

```
PHPZen\LaravelRbac\RbacServiceProvider::class,
```

Publish migration files

```
$ php artisan vendor:publish --provider="PHPZen\LaravelRbac\RbacServiceProvider" --force

```

Run migrations

```
$ php artisan migrate

```

Add RBAC middleware to your `app/Http/Kernel.php`

```
protected $routeMiddleware = [
    ...
    'rbac' => '\PHPZen\LaravelRbac\Middleware\Rbac::class'
];
```

Add Rbac trait to your `User` model

```
use PHPZen\LaravelRbac\Traits\Rbac;

class User extends Authenticatable
{
    use Rbac;
    ...

}
```

Usage
-----

[](#usage)

### Roles

[](#roles)

#### Create role

[](#create-role)

```
$adminRole = new Role;
$adminRole->name = 'Administrator';
$adminRole->slug = 'administrator';
$adminRole->description = 'System Administrator';
$adminRole->save();

$editorRole = new Role;
$editorRole->name = 'Editor';
$editorRole->slug = 'editor';
$editorRole->description = 'Editor';
$editorRole->save();
```

#### Assign role to user

[](#assign-role-to-user)

```
$user = User::find(1);
$user->roles()->attach($adminRole->id);
```

you can also assign multiple roles at once

```
$user->roles()->attach([$adminRole->id, $editorRole->id]);
```

#### Revoke role from user

[](#revoke-role-from-user)

```
$user->roles()->detach($adminRole->id);
```

you can also revoke multiple roles at once

```
$user->roles()->detach([$adminRole->id, $editorRole->id]);
```

#### Sync roles

[](#sync-roles)

```
$user->roles()->sync([$editorRole->id]);
```

Any role already assigned to user will be revoked if you don't pass its id to sync method.

### Permissions

[](#permissions)

#### Create permission

[](#create-permission)

```
$createUser = new Permission;
$createUser->name = 'Create user';
$createUser->slug = 'user.create';
$createUser->description = 'Permission to create user';
$createUser->save();

$updateUser = new Permission;
$updateUser->name = 'Update user';
$updateUser->slug = 'user.update';
$updateUser->description = 'Permission to update user';
$updateUser->save();
```

#### Assign permission to role

[](#assign-permission-to-role)

```
$adminRole = Role::find(1);
$adminRole->permissions()->attach($createUser->id);
```

you can also assign multiple permissions at once

```
$adminRole->permissions()->attach([$createUser->id, $updateUser->id]);
```

#### Revoke permission from role

[](#revoke-permission-from-role)

```
$adminRole->permissions()->detach($createUser->id);
```

you can also revoke multiple permissions at once

```
$adminRole->permissions()->detach([$createUser->id, $updateUser->id]);
```

#### Sync permissions

[](#sync-permissions)

```
$adminRole->permissions()->sync([$updateUser->id]);
```

Any permission already assigned to role will be revoked if you don't pass its id to sync method.

### Check user roles/permissions

[](#check-user-rolespermissions)

Roles and permissions can be checked on `User` instance using `hasRole` and `canDo` methods.

```
$isAdmin = Auth::user()->hasRole('administrator'); // pass role slug as parameter
$isAdminOrEditor = Auth::user()->hasRole('administrator|editor'); // using OR operator
$canUpdateUser = Auth::user()->canDo('update.user'); // pass permission slug as parameter
$canUpdateOrCreateUser = Auth::user()->canDo('update.user|create.user'); // using OR operator
```

### Protect routes

[](#protect-routes)

Laravel RBAC provides middleware to protect single route and route groups. Middleware expects 2 comma separated params:

- **is** or **can** as first param - what to check (role/permission)
- role/permission slug as second param

```
Route::get('/backend', [
    'uses' => 'BackendController@index',
    'middleware' => ['auth', 'rbac:is,administrator']
]);
Route::get('/backend', [
    'uses' => 'BackendController@index',
    'middleware' => ['auth', 'rbac:is,administrator|editor']
]);
Route::get('/dashboard', [
    'uses' => 'DashboardController@index',
    'middleware' => ['auth', 'rbac:can,view.dashboard']
]);
Route::get('/dashboard', [
    'uses' => 'DashboardController@index',
    'middleware' => ['auth', 'rbac:can,view.dashboard|view.statistics']
]);
```

### Blade directive

[](#blade-directive)

Laravel RBAC provides two Blade directives to check if user has role/permission assigned.

Check for role

```
@ifUserIs('administrator')
    // show admin content here
@else
    // sorry
@endif

@ifUserIs('administrator|editor')
    // show editor content here
@else
    // sorry
@endif

```

Check for permission

```
@ifUserCan('delete.user')
    // show delete button
@endif

@ifUserCan('delete.user|manage.user')
    // show delete button
@endif

```

License
-------

[](#license)

Laravel RBAC is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1063 days

Total

3

Last Release

1654d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6ed9f819168e3d7813264b908f2f492d78603a51264fe23b1b83b111a63a87b1?d=identicon)[AmonRay](/maintainers/AmonRay)

---

Top Contributors

[![phpzen](https://avatars.githubusercontent.com/u/16389236?v=4)](https://github.com/phpzen "phpzen (11 commits)")[![msbytes](https://avatars.githubusercontent.com/u/24713293?v=4)](https://github.com/msbytes "msbytes (9 commits)")[![AmonRay](https://avatars.githubusercontent.com/u/4718043?v=4)](https://github.com/AmonRay "AmonRay (1 commits)")[![tal512](https://avatars.githubusercontent.com/u/4966359?v=4)](https://github.com/tal512 "tal512 (1 commits)")

---

Tags

laravelsecurityauthaclrolespermissionsrbac

### Embed Badge

![Health badge](/badges/amonray-laravel-rbac/health.svg)

```
[![Health](https://phpackages.com/badges/amonray-laravel-rbac/health.svg)](https://phpackages.com/packages/amonray-laravel-rbac)
```

###  Alternatives

[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[phpzen/laravel-rbac

Role based access control for Laravel 5

383.2k](/packages/phpzen-laravel-rbac)[erag/laravel-role-permission

A simple and easy-to-install role and permission management package for Laravel, supporting versions 10.x and 11.x

404.2k](/packages/erag-laravel-role-permission)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
