網站的大多數路由都定義在 app/Http/routes.php 文件中,這個路由文件將會被 App/Providers/RouteServiceProvider 類載入
最基本的 Laravel 路由僅接受 URI 和一個閉包,下面我們再定義兩條路由
文件位置:app/Http/routes.php
相關代碼:
app/Http/routes.php
Route::get(‘welcome’, function () {
return view(‘welcome’);
});
Route::get(‘/’, function() {
return ‘首頁頁面’;
});
Route::get(‘/help’, function() {
return ‘幫助頁面’;
});