* Modified index and publications routes

This commit is contained in:
A Retha 2024-02-20 12:23:56 +00:00
parent 21fca7d34a
commit 0f5698004c
1 changed files with 2 additions and 2 deletions

View File

@ -16,12 +16,12 @@ use Illuminate\Support\Facades\Route;
// @route('home') // @route('home')
// @route('index') // @route('index')
Route::get('/', function () { Route::get('/', function () {
return view('layout', ['heading' => 'Description', 'content' => '<p>Hello World!</p>']); return view('layout');
}); });
// @route('publications') // @route('publications')
Route::get('/publications', function() { Route::get('/publications', function() {
return view('layout', ['heading' => 'Publications', 'content' => '<p><ul><li>A</li><li>B</li><li>C</li></ul></p>']); return view('layout');
}); });
// @route('profile') // @route('profile')