laravelでforeach文を行っている中でformを使っており、そのformのボタンを一つにまとめてforeach文の外でボタンを作りたいです。
”カートに進む”をsubmitにしたいです。
該当のソースコード
blade
1@extends('layouts.header') 2 3@section('content') 4 <table class="menu"> 5 @foreach ($items as $item) 6 <tr> 7 <td class="img_one"> 8 <img src="images/{{ $item->image }}"> 9 </td> 10 <td class=""> 11 <strong style="font-size: 17px">{{ $item->name }}</strong> 12 <p>{{ $item->calory }}<br>{{ $item->sugar }}<br>{{ $item->dietary }}<br>{{ $item->protein }} 13 </td> 14 <td> 15 <p class="fee">{{ $item->amount }}円</p> 16 </td> 17 <td> 18 <form method="POST" action="cartitem" class=""> 19 @csrf 20 <select name="quantity" onChange="keisan()" > 21 <option selected>0</option> 22 <option >1</option> 23 <option>2</option> 24 <option>3</option> 25 <option>4</option> 26 <option>5</option> 27 </select><br> 28 <input type="hidden" name="item_id" value="{{ $item->id }}"> 29 <button type="submit" class="fas fa-cart-arrow-down button1"></button> 30 </form> 31 </td> 32 </tr><br> 33 @endforeach 34 </table> 35 36 <a class="btn btn--orange" type="button" href="/cartitem">カートに進む</a> 37 @endsection 38
回答2件
あなたの回答
tips
プレビュー