Wildcard permissions can be enabled in the permission config file:
'enable_wildcard_permission' => true,
When enabled, wildcard permissions offers you a flexible representation for a variety of permission schemes. The idea
behind wildcard permissions is inspired by the default permission implementation of
Apache Shiro.
A wildcard permission string is made of one or more parts separated by dots (.).
$permission = 'posts.create.1';
The meaning of each part of the string depends on the application layer.
You can use as many parts as you like. So you are not limited to the three-tiered structure, even though
this is the common use-case, representing {resource}.{action}.{target}.
NOTE: You must actually create the permissions (eg: posts.create.1
) before you can assign them or check for them.
NOTE: You must create any wildcard permission patterns (eg: posts.create.*
) before you can assign them or check for them.
##Using Wildcards
ALERT: The *
means "ALL". It does not mean "ANY".
Each part can also contain wildcards (*
). So let's say we assign the following permission to a user:
Permission::create(['name'=>'posts.*']);
$user->givePermissionTo('posts.*');
Permission::create(['name'=>'posts']);
$user->givePermissionTo('posts');
Everyone who is assigned to this permission will be allowed every action on posts. It is not necessary to use a
wildcard on the last part of the string. This is automatically assumed.
$user->can('posts.create');
$user->can('posts.edit');
$user->can('posts.delete');
##Meaning of the *
Asterisk
The *
means "ALL". It does not mean "ANY".
Thus can('post.*')
will only pass if the user has been assigned post.*
explicitly.
##Subparts
Besides the use of parts and wildcards, subparts can also be used. Subparts are divided with commas (,). This is a
powerful feature that lets you create complex permission schemes.
$user->givePermissionTo('posts,users.create,update,view');
$user->givePermissionTo('*.create,update,view');
$user->givePermissionTo('posts.*.1,4,6');
As said before, the meaning of each part is determined by the application layer! So, you are free to use each part as you like. And you can use as many parts and subparts as you want.