entrust icon indicating copy to clipboard operation
entrust copied to clipboard

Role-based Permissions for Laravel 5

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

first of all i want to thank you because of your awsome package i want to know is there anyway to make it dynamic for example i deploy the system...

This way, duplicate records aren't added and foreign key constraints don't become an issue.

Hi. I want to ask if this package working in laravel 5.6 ? Thank you in advanced.

When i add this line code in routes.php `Entrust::routeNeedsPermission('admin/post*', 'create-post');` all response to artsian command become this ``` php artisan vendor:publish [BadMethodCallException] Method filter does not exist. ``` `

I made multi auth. I have another table called admins that related to roles tables and change configuration in config/entrust.php then crud roles works well with permissions and admins tables....

i can check the role using this code ` Auth::guard('admin')->user()->hasRole('developer') ` is there any shortcut code like not using multi auth ? bcoz `Entrust::hasRole('developer')` doesnt work.. -- edit -- blade...

is this package still in development or will it not get updated anymore?

Hi, How can I assign role automatically to user when they register. I've tried ``` ->assignRole('user') ``` in my register controller but didn't work.

Hi, I was trying to use `withRole()` as suggested in the [README.md](https://github.com/Zizaco/entrust/blame/master/README.md#L312) but this functioin seems to be non existent? Trying to use it i got Call to undefined method...