close
/*檔案:routes/web.php*/
Route::get('/', function () {
return view('welcome');
});
瀏覽器網址列:localhost/
引導到的檔案:resources/views/welcome.blade.php
/*檔案:routes/web.php*/
Route::get('/about', function () {
return "我是about";
});
瀏覽器網址列:localhost/about
出現文字:我是about
/*檔案:routes/web.php*/
Route::get('/post/{id}/{name}', function ($id,$name) {
return "這一頁是第".$id."篇,標題是".$name;
});
瀏覽器網址列:localhost/post/2/5566
出現文字:這一頁是第2篇,標題是5566
/*檔案:routes/web.php*/
Route::get('books/buying',array('as'=>'book.buy',function(){
$url=route('book.buy');
return '這個網址是'.$url;
}));
瀏覽器網址列:localhost/books/buying
出現文字:這個網址是http://localhost/laravel0823/public/books/buying
cmd輸入php artisan route:list後:會發現books/buying他有name:book.buy
全站熱搜
留言列表