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

Getting this error for routes like this - $api->post('datatable/manage-user', ['can' => ['view.user']], 'App\Http\Controllers\ManageUserController@indexWithPagincation');

Can you help me? I'm debugging around 2 hour your middleware, don't understanding why you provide an opportunity to override in config ``` 'crud' => [ 'restful' => [ //methods...

There is a way to "allow from all, except this"? I mean, without the need of adding all else roles to 'is' key. Or 'not' operator: ``` php

proposal: accepted

Is it possible to make something like config('acl.user') to define a custom User model?

Hi. I'm not sure, how to use the acl blade extensions and I had to enable them manually? If i use something like: ``` @role('admin|moderator') // content allowed for admin's...

I'm using the following code: ``` php $admin = \App\Models\User::create([ 'name' => 'Admin 1', 'email' => 'admin1@local', 'password' => Hash::make("123456") ]); $roleAdmin = \Kodeine\Acl\Models\Eloquent\Role::create([ "name" => "Admin", "slug" => "admin",...

Hi ya, Thanks for the great package! really nice to work with. I've noticed in `\Kodeine\Acl\Models\Eloquent\Permission`that when `updating` the slug, it adds any new items, but won't allow deletion. I...

hi i am reworking my project with vue js frontend and don't have any idea how to expose this acl into vue js.... and i read an example of exposing...

Hi @kodeine , I am getting " Call to undefined method Illuminate\Database\Query\Builder::assignPermission() "; while trying to assign permission to admin role. I am using laravel 5.2 the permissions,roles,permission_role,permission_user,role_user tables are...

When trying the module on Laravel 5.4 and when allocating permission to the selected Role, assignPermission is not found.following your wiki on this. $permUser = Permission::find(1); $roleAdmin = Role::first(); $roleAdmin->assignPermission($permUser);...