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')