first
This commit is contained in:
@@ -13,6 +13,23 @@ use Illuminate\Support\Facades\Route;
|
||||
|
|
||||
*/
|
||||
|
||||
// @route('home')
|
||||
// @route('index')
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
return view('layout', ['heading' => 'Description', 'content' => '<p>Hello World!</p>']);
|
||||
});
|
||||
|
||||
// @route('publications')
|
||||
Route::get('/publications', function() {
|
||||
return view('layout', ['heading' => 'Publications', 'content' => '<p><ul><li>A</li><li>B</li><li>C</li></ul></p>']);
|
||||
});
|
||||
|
||||
// @route('profile')
|
||||
Route::get('/profile', function() {
|
||||
return view('layout', ['heading' => 'Profile', 'content' => '<p>This is my profile...</p>']);
|
||||
});
|
||||
|
||||
// @route('contact')
|
||||
Route::get('/contact', function() {
|
||||
return view('contact');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user