* Modified index and publications routes
This commit is contained in:
parent
21fca7d34a
commit
0f5698004c
|
@ -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')
|
||||||
|
|
Loading…
Reference in New Issue