From 104d1c8aa601526405b65f0f42721fd6661ddc86 Mon Sep 17 00:00:00 2001 From: Dhaverd Date: Wed, 18 Jun 2025 21:43:21 +0800 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=BC=D0=B5=D0=BD=D1=8F=D0=BB=20?= =?UTF-8?q?=D1=80=D0=BE=D1=83=D1=82=D1=8B=20=D0=B4=D0=BB=D1=8F=20=D0=B3?= =?UTF-8?q?=D0=BB=D0=B0=D0=B2=D0=BD=D0=BE=D0=B9=20=D0=B8=20=D1=80=D0=B0?= =?UTF-8?q?=D1=81=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D0=B8=D1=8F=20=D1=81=D1=82?= =?UTF-8?q?=D1=80=D0=B8=D0=BC=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/web.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/routes/web.php b/routes/web.php index 2e39981..0c9394f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -14,6 +14,10 @@ use Illuminate\Support\Facades\Route; */ Route::get('/', function () { + return view('ServiceLinks/links'); +}); + +Route::get('/schedule', function () { return view('welcome'); }); @@ -33,10 +37,6 @@ Route::get('/friday', function () { return view('friday/friday'); }); -Route::get('/services_list', function () { - return view('ServiceLinks/links'); -}); - Route::get('/download/{file}', 'App\Http\Controllers\DownloadController@download');