Laravel Packages

DirectoryTree Authorization is a Native Role and Permission Management Package for Laravel

Published
DirectoryTree Authorization is a Native Role and Permission Management Package for Laravel image

The DirectoryTree Authorization package by Steve Bauman is an easy, native role and permission management system for Laravel.

It works with Laravel's Gate and authorization methods out of the box, and offers the following lightweight API to manage roles and permissions:

use DirectoryTree\Authorization\Permission;
use DirectoryTree\Authorization\Role;
 
$createUsers = Permission::create([
'name' => 'users.create',
'label' => 'Create Users',
]);
 
$admin = Role::create([
'name' => 'administrator',
'label' => 'Admin',
]);
 
// Grant the permission to a role
$admin->permissions()->save($createUsers);
 
// Assign the role to a user
$user->roles()->save($admin);
 
// `can()` method usage in PHP:
Auth::user()->can('users.create');
 
// Using Laravel's `Gate`:
Gate::allows('users.create');
 
// Using Laravel's `@can()` directive:
@can('users.create')
<!-- This user can create other users. -->
@endcan

The above code snippet doesn't contain every method available—see the readme for usage details on managing roles and permissions with this package, which includes the following main features:

  • Manage User roles and Permissions
  • Create user-specific permissions
  • Checking permissions and roles
  • Caching permissions by default
  • Use with Laravel's native Gate and authorization methods.
  • Permissions are registered in Laravel's Gate by default
  • Includes useful permission and role middleware

To get started with this package, check out package on GitHub at directorytree/authorization.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article
Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites image

Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites

Read article
Collections chunkBy() and Storage Path Hardening in Laravel 13.30 image

Collections chunkBy() and Storage Path Hardening in Laravel 13.30

Read article
Forte: Parse and Rewrite Laravel Blade Templates image

Forte: Parse and Rewrite Laravel Blade Templates

Read article