Hey guys, in this article, am going to show you how toimplement multiple role-based authentication in Laravel even if you have many different users and multiple dashboards respectively.
Before we delve into achieving that, let me breakdown my scenarios or problems I was facing in a project I was working for a company, that made me spend almost two weeks trying to figure it out.
In this project, I was presented with six (6) different users and their respective dashboards too, the users were as follows viz:
- Super Admin
- Admin
- Players
- Teams
- Academics
- Scouts
So, the problem was to redirect the users to their respective dashboards on successful logins and restrict access to any other dashboards even if they typed in the URL to or try to access the other dashboard, it should redirect them back to their default dashboard.
As I read through many blog posts, video tutorials, and questionings which was great, I discovered that whenever I successfully implement a solution, I will always discover a fault during security test/checks such as “too many redirect errors” or enabling a logged-in player to access a scout dashboard, etc.
I also discovered many solutions such as the use of guards, middleware, etc. which helped tremendously.
GETTING STARTED
Enough of the housekeeping things, let me move down to how I successfully implement multiple role-based authentications in Laravel and save myself two weeks of sleepless nights.
We will start by installing a fresh new Laravel project, you can skip these steps if you are comfortable with it.
CREATING A FRESH LARAVEL
Type in the following commands in your projects folder assuming you have php 7.* and composer installed. You can check here to learn how to install Laravel.
composer create-project --prefer-dist laravel/laravel MultiAuth
S ETTING UP YOUR DATABASE AND .ENV FILE
The next step is to set up your database migrations and configuring your environment file. Go to your phpMyAdmin and create a database.
Open your user migration file and add the following columns
After that, open your .env file and pass in your database credentials
Run your migrations
php artisan migrate
You can set up database seeders to fill your database with data or you can add it manually, whichever way is good, or you can simply use my code examples since I have set up a database seeder already just for this example.
SETTING UP USER AUTH.
After setting up your database and running migrations, the next step is to use Laravel default authentication which is just fine for our example, Thanks to Laravel teams.
By just running:
php artisan make:auth
You should successfully set up a complete user registration and login system out of the box, now visit your newly created Laravel project by typing.
php artisan serve
And typing 127.0.0.1:8000 in the browser. At this stage, you can decide to seed six (6) different users with corresponding user roles or manually insert them into the database.
So, our user role is going to be numerical as follows:
- Super Admin
- Admin
- Player
- Team
- Academic
- Scout
After properly seeding the dummy user data, if you are happy with it, let's move to the next step.
CREATING DASHBOARD CONTROLLERS
The next step will be to create different dashboard controllers for different users. Type
php artisan make:controller AdminController
php artisan make:controller PlayerController
Repeat until you complete the six (6) dashboards.
CREATING MIDDLEWARES
After creating the different controllers, the next step is to create the different middleware corresponding to the different user roles. TYPE
php artisan make:middleware Admin
php artisan make:middleware Player
Repeat until you complete the six (6) middlewares.
After creating the middleware, now go into the kernel.php file under the $routeMiddleware array and register them.
After registering the middleware appropriately, the next step is assigning the middleware to the different controllers or routes you want to protect.
SETTING UP VIEWS AND ROUTES
Go to your views folder and create a different view dashboard. Remember the dashboard files can be inside different folders, it doesn’t matter, just route them correctly inside your controllers.
Inside each of the dashboards, I added a dummy text, just to demonstrate.
After creating the view, go to web.php under the routes folder and set up the different routes to access the different dashboards.
Now, here is the interesting part, in my example or project, I prefer assigning the middleware to the routes instead of adding it into the Controller constructors.
EDITING THE MIDDLEWARE
After registering and assigning the middleware to the routes or controllers, let edit the contents of each of the middlewares. So, inside the handle method, check if the user is Authenticated and redirect according to the user role to the different dashboards.
EDITING THE LOGIN AND REGISTER CONTROLLER
After a successful login, you need to redirect the user to the appropriate dashboard based on the user role.
You can do the same with Register Controller or you can simply redirect users to the verify page and after verification, you can redirect to the dashboard or login page again depending on your project.
CONCLUSIONS
Wow!!! Congratulations, that was a long read and code typing, you can watch the video here.
So far, the problem we have solved is preventing a logged-in user from accessing other users’ dashboards and also preventing “too many redirect errors” when working with guards wrongly.
we understand that there are many ways to kill a rat, we want to hear your thoughts and best practices on how to solve this same issue, if you have encountered it before, how did you solve it, lets hear it in the comment section below and we will update this post accordingly.
You can get the full source code here
If you enjoy this post make sure you share it with your friends and subscribe to my growing channel.
If you are interested in backend development (or you’re internet enthusiast) both (Mobile | Web | Desktop) subscribe to my [_Youtube channel](http://bit.ly/multimegaschool), we will be posting a collection of help full tutorials and guides like this one for artisans_
The post Multiple role-based authentication in Laravel appeared first on Masteringbackend.
Top comments (29)
And here's another refactor to make it even conciser and easier to read and change. It is using a lookup array to isolate changes (just add a new item to the array for a new role) and have one execution path (one
redirect
line instead of 5).I'm Having errors after implementing this.
I logged in as
academy
then try to visit theadmin
dashboard by typing the route to it in the browser and i got this ->"Call to undefined method Illuminate\Auth\AuthManager::user()"
In Martin's implementation there's a typo of the parenthesis when calling the Auth facade... So instead of
Auth()::user()->role
, it should beAuth::user()->role
Oh that's true.. I will fix that..
I'll replicate it soon, probably I just have a typo somewhere.
Sure. I will be expecting.
a comment that make me awkwardly happy
Wow.. it's getting more clean and clear.. Thanks for the update.
May I propose a refactor for the
handle
method? You could save some duplications by flipping the logic. If you first ask forif the user is not logged in, redirect to login
you catch this case once and can skip it for everything that follows. Also, instead ofelse
…else
, you can simply useif
…if
. If a case proves true, you return something and the function stops, so you do not need anelse
. This reduces cognitive load.What about switch statement?
Yes,
switch
would cut some duplicate lines. I would still propose the lookup array pattern as recommended in this extra comment as it is a lot easier to add and cut arguments and is super easy to read.These if statements could also be one-liners to save some more characters and space.
Yes, but there still would be lots of repetitions even in short-form. Maybe I can write an own article soon about possible refactorings so that people can learn and compare. The original poster went with the simple
if
solution but there are multiple ways to make it shorter and easier to maintain.Indeed.
Tell me where can I start a new discussion?
Just put a comment on the root of this article: dev.to/kaperskyguru/multiple-role-...
This is great, thanks for your contribution, I will refactor immediately.
Updated now..
It was a beautiful tutorial, there is a routing refactor must be done tho, in order to function properly in laravel 8
Route::get('/player', [PlayerController::class,'index'])->name('player')->middleware('player');
instead of
Route::get('/player', 'PlayerController@index')->name('player')->middleware('player');
there are other ways to solve this problem but that just my favorite one
This work for page level and route level access control. Is there any guide for page element access control? Such as hide delete button for non-admin, disabled edit capability for certain form field access control?
You can use action based control, like Spartia library for such.
github.com/spatie/laravel-permission
created role middleware but getting an error
error: Attempt to read property "role" on null
middleware function below as :
public function handle(Request $request, Closure $next)
{
if (!Auth::check()) {
i used your code and i am getting this error
127.0.0.1 redirected you too many times.
How if the user have multiple account with different roles,but with the same credentials ? I assumed this nice guide not covered it yet :)
In that case, create a separate table for roles and permissions (spatie/laravel-permission can help). Then, create the permissions and roles and assign permissions to roles. I would recommend as best practice to rely mainly on permissions in your applications as differents roles may have common permissions. Now, when a user is created assign him a role, and rely on this first role for redirect ($user->roles()->id). You can have a menu where he can switch to another dashboard based on his roles. Hope it helps.
Yes the article didn't cover that. But I will suggest you use OTP to implement such scenerios.
Great!
I wish to know how to handle when a user has multiple roles ie. superadmin and admin
Nice, this was a great tutorial!
Some comments may only be visible to logged-in visitors. Sign in to view all comments.