0
我希望通過勾選複選框來提交表單,其中foreach循環中有行。當foreach循環之外有一行時,我似乎將id數據接收到我的控制器中,但是當它位於foreach循環之外時,它會被跳過。這是我的代碼示例?我錯過了什麼?從數據在laravel blade foreach循環中創建數組
<form action="{{ url('/staff') }}" method="POST" role="form" id="form" class="form-horizontal">
{{ csrf_field() }}
@foreach ($items as $item)
<tbody>
<tr>
<td >
{{ $item->first_name }} {{ $item->last_name }}
</td>
<td class="center">
<div class="checkbox-table">
<label>
<input name="item[]" value="{{ $item->id }}" type="checkbox" class="flat-grey">
</label>
</div>
</td>
</tr>
@endforeach
</tbody>
<div>
<button class="btn btn-yellow" type="submit">
Save</i>
</button>
</div>
</form>