Your can use this code middleware group function of web.php
Route::group(['middleware'=>'admin'],function(){ Route::get('/home/dashboard', [HomeController::class, 'dashboard'])->name('home.dashboard'); });