Thi is my route
Route::resource('/', 'IndexPageController');
Route::get('/shop', 'ShopController@index');
Route::get('/shop/{product}', 'ShopController@show')
And this my method show
public function show($slug)
{
$product = Product::where('slug', $slug)->firstOrFail();
return view('product')->with('product', $product);
}
this is in product.blade.php
<h4 class="card-title"></h4>
<p class="card-text"></p>
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire