1. Go to this page and download the library: Download binary-cats/laravel-rbac library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
binary-cats / laravel-rbac example snippets
return [
/*
|--------------------------------------------------------------------------
| Role base access reset control
|--------------------------------------------------------------------------
|
| When running rbac:reset those commands will be executed in sequence
|
*/'jobs' => [
\BinaryCats\LaravelRbac\Jobs\FlushPermissionCache::class,
\BinaryCats\LaravelRbac\Jobs\ResetPermissions::class,
\BinaryCats\LaravelRbac\Jobs\SyncDefinedRoles::class,
],
/*
|--------------------------------------------------------------------------
| Role base access ability set
|--------------------------------------------------------------------------
|
| Place your ability files in this folder, and they will be auto discovered
|
*/'path' => app()->path('Abilities'),
/*
|--------------------------------------------------------------------------
| Defined Roles
|--------------------------------------------------------------------------
|
| Defined roles are immutable by users
|
*/'roles' => [
],
];
namespaceApp\Abilities;
enum PostAbility: string
{
case ViewPost = 'view post';
case CreatePost = 'create post';
case UpdatePost = 'update post';
case DeletePost = 'delete post';
}
useBinaryCats\LaravelRbac\DefinedRole;
classEditorRoleextendsDefinedRole{
/** @var array|string[] */protectedarray $guards = [
'web'
];
/**
* List of enumerated permissions for the `web` guard
*
* @return array
*/publicfunctionweb(): array{
return [];
}
}
namespaceApp\Roles;
useApp\Abilities\PostAbility;
useBinaryCats\LaravelRbac\DefinedRole;
classEditorRoleextendsDefinedRole{
/** @var array|string[] */protectedarray $guards = [
'web'
];
/**
* List of enumerated permissions for the `web` guard
*
* @return array
*/publicfunctionweb(): array{
return [
PostAbility::CreatePost,
PostAbility::UpdatePost,
PostAbility::ViewPost,
];
}
}