genealabs / laravel-authorization-addons
Additional helper methods and blade directives to help with more complex authorization queries.
Fund package maintenance!
mikebronner
Requires
- php: >=7.2
- illuminate/auth: ^5.5|^6.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-29 05:22:23 UTC
README
Additional helper methods and blade directives to help with more complex authorization queries.
Usage
@canAny (iterable $abilities, $model)
Checks if any one of the abilities is authorized for the given model.
@canAny (['create', 'edit'], $post)
@canEvery (iterable $abilities, string $model)
Checks if all of the abilities are authorized for the given model.
@canEvery (['create', 'edit', 'remove'], $post)
@elseCanAny (iterable $abilities, string $model)
Same as @canAny
, but allowing for multiple conditionals when checking
authorizations.
@elseCanEvery (iterable $abilities, string $model)
Same as @canEvery
, but allowing for multiple conditionals when checking
authorizations.
Inverse Methods:
The following inverse methods are also available, along with the same signatures as their counterparts:
@cannotAny
@cannotEvery
@elseCannotAny
@elseCannotEvery