'Description', 'content' => '

Hello World!

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

']); }); // @route('profile') Route::get('/profile', function() { return view('layout', ['heading' => 'Profile', 'content' => '

This is my profile...

']); }); // @route('contact') Route::get('/contact', function() { return view('contact'); });