NEW: Roles/Permissions – with out-of-the-box Laravel ACL

Founder of QuickAdminPanel
Another new functionality in QuickAdmin – from now you can install a Roles/Permissions module and add permissions to your CRUDs. Here’s how it looks visually.
While creating a new CRUD, you can assign different permissions to various roles:
As mentioned in the title, we don’t use any external package for that – in your generated and downloaded adminpanel you will see a usual simple Laravel code like this:
if (! Gate::allows('project_access')) { return abort(401); }
Or this:
@can('project_create') <p> <a href="{{ route('projects.create') }}" class="btn btn-success">Add new</a> </p> @endcan
To start using Roles/Permissions module, go to menu Modules and install this one:
If you need more information about how those roles-permissions work in Laravel, here’s a link to the official Laravel documentation.
Try our QuickAdminPanel generator!
Recent Posts
Try our QuickAdminPanel Generator!
How it works:
1. Generate panel online
No coding required, you just choose menu items.
2. Download code & install locally
Install with simple "composer install" and "php artisan migrate".
3. Customize anything!
We give all the code, so you can change anything after download.