entrust icon indicating copy to clipboard operation
entrust copied to clipboard

Role-based Permissions for Laravel 5

Results 117 entrust issues
Sort by recently updated
recently updated
newest added

Hello guys For now what i see, after auth roles and permissions working fine, but when type /admin/ i getting error normally i thing should be redirect to login form....

Laravel Version: 5.6 Error: ** Attribute [filter] does not exist.** Case: When using the following syntax (below) in my my route I had this kind of error `Attribute [filter] does...

I have an issue when try to add deleting event in boot method of my child class which exteneds User class which use EntrustTrait... :). The event is not fired....

I am getting this error when I try to upgrade laravel 5.8.* to 6.0.* version. Installation request for laravel/framework ^6.0 -> satisfiable by laravel/framework[v6.0.0, v6.0.1, v6.0.2, v6.0.3, v6.0.4, v6.1.0, v6.2.0,...

I'm using Laravel 5.8 and package version "zizaco/entrust": "5.2.x-dev". When attaching permission to role in the way shown below cache is not updated until i fire: "php artisan cache:clear" For...

Hello everyone. I am using the entrust package, and one of the instructions to use it is to change the User model, like this `class User extends Eloquent` And after...

This controller constructor code works, no problem and handy for a Laravel Resource Constructor ``` public function __construct(){ $this->middleware('role:administrator|writer', ['except' => ['index','show']]); } ``` This gives you an error ```...

The cache for particular role or permissions which is used in `can` and `hasRole`, should be removed when operations like attach and detach is happen. because the new changes need...