From 0f5698004caf96f983721de1e63f99dfb78857ea Mon Sep 17 00:00:00 2001 From: A Retha Date: Tue, 20 Feb 2024 12:23:56 +0000 Subject: [PATCH] * Modified index and publications routes --- routes/web.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/web.php b/routes/web.php index b5a4499..9a86a6f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -16,12 +16,12 @@ use Illuminate\Support\Facades\Route; // @route('home') // @route('index') Route::get('/', function () { - return view('layout', ['heading' => 'Description', 'content' => '

Hello World!

']); + return view('layout'); }); // @route('publications') Route::get('/publications', function() { - return view('layout', ['heading' => 'Publications', 'content' => '

']); + return view('layout'); }); // @route('profile')