From 4ba3093a41b8054f993b67e295763ce1955380e4 Mon Sep 17 00:00:00 2001 From: shevelev-anatoliy Date: Wed, 7 Aug 2024 22:36:09 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=D1=80=D0=B5=D1=88=D0=B5=D0=BD=D1=8B=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=B4=D0=B0=D1=87=D0=B8=20=D1=80=D0=B0=D0=B7=D0=B4?= =?UTF-8?q?=D0=B5=D0=BB=D0=B0=20Routes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- routes/web.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/routes/web.php b/routes/web.php index 72ae4c6..2d72417 100644 --- a/routes/web.php +++ b/routes/web.php @@ -9,12 +9,10 @@ // Одна строка кода Route::view('/hello', 'hello'); - //TODO Route Задание 2: По GET урлу / обратиться к IndexController, метод index // Одна строка кода Route::get('/', [IndexController::class, 'index']); - //TODO Route Задание 3: По GET урлу /page/contact отобразить view - /resources/views/pages/contact.blade // с наименованием роута - contact // Одна строка кода @@ -56,3 +54,4 @@ }); require __DIR__ . '/default.php'; +