私は私が読んでどこでも検索が、私は1ルートでこれを扱うことができる方法を見つけ出すことはできませんしている::Laravel 4.2およびURL
I場合は、次の
whatever.com/products/accessories/1
whatever.com/products/amplifiers/2
whatever.com/products/speakers/3
のようになります。URLを持っています私は、次のルートを使用することができ、次の
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()));
});
しかし、これは事前
これはまさに私が探していたものです。どうもありがとうございました。 – zr1vette