404
Not Found
use App\Http\Controllers\DashboardController; use Illuminate\Support\Facades\Route; Route::get('/', function () { return view('welcome'); }); Route::middleware(['auth', 'verified'])->group(function () { Route::get('/dashboard', DashboardController::class)->name('dashboard'); }); require __DIR__.'/auth.php';