我试图制作带有复选框的表格,其中管理员可以检查多个产品并删除它们。到目前为止,我已经制作了表格
@foreach($products as $product)
{{ Form::open() }}
<input type="checkbox" name="delete[]" value="{{ $product->product_id }}">
<a class="btn btn-primary" href="{{ URL::to('/admin/products/multiDdelete') }}?_token={{ csrf_token() }}">Delete</a>
{{ Form::close() }}
@endforeach
这是我的路线
Route::get ('/admin/products/multiDdelete', ['uses' => 'AdminController@testDelete', 'before' => 'csrf|admin']);
这在控制器中
public function testDelete() {
$delete = Input::only('delete')['delete'];
$pDel = Product::where('product_id', $delete);
$pDel->delete();
return Redirect::to('/admin/test')->with('message', 'Product(s) deleted.');
}
到目前为止,当我检查产品并点击Delete
页面重新加载并且产品已删除但产品未被删除时。我认为问题在于我如何通过ID's
..但我无法理解。
答案 0 :(得分:3)
您的查询不会返回任何有用的内容。即使使用->get()
,它也会返回一个集合,您无法按照自己的方式使用该集合。您可以将删除添加到查询中:
Product::whereIn('product_id', $delete)->delete();