Download the PHP package laraturka/acl without Composer
On this page you can find all versions of the php package laraturka/acl. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download laraturka/acl
More information about laraturka/acl
Files in laraturka/acl
Download laraturka/acl
More information about laraturka/acl
Files in laraturka/acl
Please rate this library. Is it a good library?
Informations about the package acl
acl
Role Based Access Control for Laravel
Copy migrate and seed files and migrate with seed.
Add route middleware for acl app/Http/Kernel.php 'acl' => \Laraturka\Acl\AclMiddleware::class,
Add AclPolicy referance to Providers. app/Http/Providers/AuthServiceProvider.php
User::class => AclPolicy::class,
Create route group with middleware
Route::group(['prefix'=>'admin', 'middleware' => ['auth','acl','nocache']], function() {
//what ever you want to route
});
All versions of acl with dependencies
PHP Build Version
Package Version
Requires
php Version
^7.0|^8.0
illuminate/auth Version 5.*.*|^6.0|^7.0|^8.0|^9.0|^10.0
illuminate/support Version 5.*.*|^6.0|^7.0|^8.0|^9.0|^10.0
illuminate/database Version 5.*.*|^6.0|^7.0|^8.0|^9.0|^10.0
illuminate/auth Version 5.*.*|^6.0|^7.0|^8.0|^9.0|^10.0
illuminate/support Version 5.*.*|^6.0|^7.0|^8.0|^9.0|^10.0
illuminate/database Version 5.*.*|^6.0|^7.0|^8.0|^9.0|^10.0
The package laraturka/acl contains the following files
Loading the files please wait ....