Skip to main content
✏️ Code CompletionLV Laravel Easy+10 XP

Auth Middleware

Complete the route middleware for authentication.

✏️ Fill in the blank
Route::___('auth')->group(function() {
  Route::get('/dashboard', [DashboardController::class, 'index']);
});

✏️ Type the missing code: