Support the ongoing development of Laravel.io →
Authentication Session Views

Route::get('admin/dashboard', function () {
    return 'Welcome to admin page';
})->middleware('isAdmin');

Route::get('supervisor/dashboard', function () {
    return 'Welcome to supervisor page';
})->middleware('isSupervisor');

// I want this route to become admin/supervisor role 
Route::get('roles/dashboard', function () {
    return 'Welcome to admin/supervisor page';
})->middleware('isAdmin')->middleware('isSupervisor');

Route::get('/home', 'HomeController@index');

Please help thanks !

Last updated 2 years ago.
0

Simply pass an array to the middleware method:

Route::get('...', function() {
    return '...';
})->middleware(['middleware1', 'middleware2']);
0

Sign in to participate in this thread!

Eventy

Your banner here too?

taneoboy taneoboy Joined 6 Feb 2016

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.