laravel-acl icon indicating copy to clipboard operation
laravel-acl copied to clipboard

Light-weight role-based permissions system for Laravel 6+ built in Auth system.

Results 75 laravel-acl issues
Sort by recently updated
recently updated
newest added
trafficstars

**This fixes handling of a different guard other than application default.** Fixes: #135. - Guard parameter on config file to get default; ```php /** * Guard * Set the guard...

I have the following roles on a project : $roles = [ ['id' => '1', 'name' => 'user', 'slug' => Str::slug('user'), 'description' => 'Membre du site.'], ... ['id' => '7',...

See https://github.com/kodeine/laravel-acl/issues/168

**I'm talking about JSON output/print** When cache is active, it return like the following for `$role->getPermissions()` ``` { role_name: { update: true }, ... } ``` but after the cache...

This will prevent exception thrown when running the big int conversion migration with db prefix config.

I tried to use the cache feature and would like to clear the existing permissions when ever role is updated. but couldn't find anything related to this in docs. I...

By default this package has set cache time for 1 minute. If I update permissions for a role, this will be effective in next cache interval. But there's should be...

I installed this package and updated bootstrap/app.php file. $app->register(Kodeine\Acl\AclServiceProvider::class); I am getting error like, Symfony\Component\Debug\Exception\FatalThrowableError: Class 'Blade' not found in /vendor/kodeine/laravel-acl/src/Kodeine/Acl/AclServiceProvider.php:54 Could you please help me to resolve this issue.

Sometimes standard migrations need to be tweaked a bit. For example, when the user's id is not numeric, but uuid, ulid. Then a different ID format is used. It is...

I tried to make code cleaner and change return error to Exception (HasPermission.php file) but ...I have been not still test the part that i changed... sorry for my bad...