我會網址,將類似於以下Laravel 4.2和URL
whatever.com/products/accessories/1
whatever.com/products/amplifiers/2
whatever.com/products/speakers/3
我已閱讀併到處搜尋,但想不通我怎麼能與一個路線::
如果處理這個問題我請執行下列操作
whatever.com/products/1
whatever.com/products/2
whatever.com/products/3
我可以使用下面的路線::
Route::model('product', 'Product');
Route::get('products/{product}', function(Product $product)
{
return View::make('product', array('product' => $product->toArray()));
});
頁
但這DOS不做出非常友好的URL
在此先感謝
這正是我所尋找的。非常感謝你。 – zr1vette