#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']
]);
If you found this ACL manager helpful please give this repo a star, and give me a follow. Any questions, please leave a comment.
Laravel newbee, apologies in advance. Laravel 5.2.35
My Route:
I'm getting this: "ReflectionException in Route.php line 280: Method App\Http\Controllers\UserController::index() does not exist"
UserController.php is your User.php
If I add an index function to the controller I get: "BadMethodCallException in Builder.php line 2345: Call to undefined method Illuminate\Database\Query\Builder::hasRole()"
I've made the adjustments mentioned above.
Suggestions?