我用 Laravel 创建了网页,并用一个很好的网址路由它们但是我正在开发一个房地产网站,我希望有一个以下网址显示一个房屋信息的页面:houseinfo/{town}/{neighborhood}/{street}/{houseID}
{town} {neighborhood} {street} and {houseID}
如何路由此页面? 谢谢!
答案 0 :(得分:1)
你可以这样做:
Route::get('/houseinfo/{town}/{neighborhood}/{street}/{houseID}', array(
'as' => 'houseinfo',
'uses' => 'HouseController@houseInfo'
));
然后,在HouseController中,您可以使用以下参数添加方法:
public function houseInfo($town, $neighborhood, $street, $houseID){
// get the data from the model
}