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

O arquivo de migração `/src/migrations/2015_02_07_172633_create_role_user_table.php` não esta com a configuração de prefix.

In this file: /src/migrations/2015_02_07_172633_create_role_user_table.php - need to change the follow part of code: before: $table->foreign('user_id') ->references('id') **->on()** ->onDelete('cascade'); after: $table->foreign('user_id') ->references('id') **->on($this->prefix . 'users')** ->onDelete('cascade'); Cheers Marco

Has a new prefix property for the table, but there is no key in the configuration file. config('acl.db_prefix')

Has anyone successfully got this package working in Laravel 6 on a clean Laravel project? I've had to make a bunch of migration changes in order for the migrations to...

## Issue When performing _artisan migrate_, migration fails due to the BigintUserKeys migration introduced with PR #109 . The [migration](https://github.com/kodeine/laravel-acl/blob/1.0/src/migrations/2015_11_30_232041_bigint_user_keys.php) wants to change the user_id field in the role_user table...

The following migration file within this package: `2016_02_06_172606_create_users_table.php` conflicts with Laravel's default [CreateUsersTable](https://github.com/laravel/laravel/blob/master/database/migrations/2014_10_12_000000_create_users_table.php) migration. When you publish Acl's migrations, run them and you try to rollback (any other) migration at...

I have Laravel 5.8 and getting this error below: Method Illuminate\Database\Eloquent\Collection::lists does not exist. On the following piece of code: Route::group([ 'middleware' => ['acl'], 'is' => 'super-admin' ], function ()...

my laravel : 5.4 php . 5.6 I want to add role based permission but for one role it should allow user based too. means for that particular role their...