#Laravel 5 Simple ACL manager
Protect your routes with user roles. Simply add a 'role_id' to the User model, install the roles table and seed if you need some example roles to get going.
If the user has a 'Root' role, then they can perform any actions.
Simply copy the files across into the appropriate directories, and register the middleware in App\Http\Kernel.php
Then specify a 'roles' middleware on the route you'd like to protect, and specify the individual roles as an array:
Route::get('user/{user}', [
'middleware' => ['auth', 'roles'],
'uses' => 'UserController@index',
'roles' => ['administrator', 'manager']
]);
// ADD ADMIN PROTECTED ROUTES TO A GROUP
Route::group(['middleware' => ['auth','roles'], 'roles' => ['administrator', 'manager']], function() {
//ADMIN INDEX
Route::get('/admin','AdminController@index')->name('admin');
Route::get('/admin/create','AdminController@create')->name('admin_create');
etc...
});
If you found this ACL manager helpful please give this repo a star, and give me a follow. Any questions, please leave a comment.