fulfill(); return redirect('/home'); })->middleware(['auth', 'signed'])->name('verification.verify'); Route::middleware(['auth'])->group(function () { Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home'); Route::get('/clients/table', [App\Http\Controllers\ClientsTableController::class, 'index'])->name('clients.table'); }); //МАКЕТЫ Route::get('projects', function () { return view(view: 'makets.projects'); }); Route::get('profile', function () { return view(view: 'user.profile'); }); Route::get('/notices', [App\Http\Controllers\NotificationProbeController::class, 'index']);