Role enum reference
The following static methods are made available to any role instance.
Available methods​
all()
permissions()
getPermissions()
getDescription()
getTitle()
asSelectArray()
getInstancesFromValues()
collect()
all(): RoleCollection​
Get all the roles available and their respective permissions as a collection.
use App\Enums\Role;
$roles = Role::all() // returns a collection of all roles available and their respective permissions
foreach ($roles as $role) {
dd($role); // instance of Role::class
}
// You can decide to convert the response to an array
$roles->toArray(); // returns an array of all roles
permissions(): array​
Get all available roles, and their respective permissions as a multidimensional array.
use App\Enums\Role;
$roles = Role::permissions(); // returns a multidimensional array of all roles and permissions
getPermissions($role): PermissionCollection​
This method will return all the available permissions of the role provided.
use App\Enums\Role;
$roles = Role::getPermissions(Role::SuperAdmin); // returns a collection of every permissions available to the super admin role
You can also pass multiple roles as parameters or as an array to get their associated permissions. Below is an illustration of how to achieve this.
use App\Enums\Role;
// as multiple arguments
$roles = Role::getPermissions(Role::SuperAdmin, Role::Admin, Role::Customer);
// or as an array
$roles = Role::getPermissions([Role::SuperAdmin, Role::Admin, Role::Customer]);
note
Both illustrations above will return an instance of \Ajimoti\RolesAndPermissions\Collections\PermissionCollection
We have touched on how to work with the permission collection in the permission class
getDescription($role): string​
Get the description of the role provided
use App\Enums\Role;
$roles = Role::getDescription(Role::SuperAdmin); // returns the description of the role
getTitle($role): string​
Get the title of the role provided
use App\Enums\Role;
$roles = Role::getTitle(Role::SuperAdmin); // returns the title of the role
asSelectArray(): array​
This will return the roles for use in a select dropdown. An array of role values
to title
is returned
use App\Enums\Role;
Role::asSelectArray();
// returns ['super_admin' => 'Super admin', 'admin' => 'Admin', 'customer' => 'Customer']
getInstancesFromValues(): RoleCollection​
You can use this method to get a collection of multiple roles.
use App\Enums\Role;
Role::getInstancesFromValues(Role::SuperAdmin, Role::Admin, Role::Customer); // returns a RoleCollection of the provided roles
collect(): RoleCollection​
Similar to the getInstancesFromValues()
method, you can use this method to get a collection of multiple roles.
use App\Enums\Role;
Role::collect(Role::SuperAdmin, Role::Admin, Role::Customer); // returns a RoleCollection of the provided roles
Other methods...​
The role enum leverages on BenSampo laravel enum package. You can explore the documentation to better understand how it works, and see more available methods you can work with
info
The Ajimoti\RolesAndPermissions\Collections\RoleCollection
and Ajimoti\RolesAndPermissions\Collections\PermissionCollection
which are both extensions of laravel's Illuminate\Support\Collection
.
You can read more about the Role Collection here, and Permission Collection here