我正在使用模式,并且想将产品ID从刀片传递到控制器,我不能直接使用它,因为我使用模式对话框,所以ID存储在输入字段中,此字段的ID为item_id,所有我只需在此href中传递item_id
<input id="item_id" type="text" name="item_id" hidden="">
<a href="{{route('cart.create',here want to pass item_id)}}">
答案 0 :(得分:-1)
这是我在成熟的laravel电子商务中的做法:
我的routes/web.php
Route::get('cart/destroy/{slug}', 'CartController@destroy')->name('cart.destroy');
我的刀片文件代码:
<a class="btn" href="{{ route('cart.destroy', $product->slug())}}">
Remove
</a>
更多信息请看此文件: