在laravel 5.6中提交时找不到页面

时间:2019-03-27 08:17:23

标签: laravel-5

我有laravel项目,在提交表单时找不到错误页面,而我已经创建了路线和所有

路线:

Route::get('/', 'IndexController@index');

Route::post('/remove/{product}', 'ProductController@removeProduct')->name('remove');

Route::group(['as' => 'cart.', 'prefix' => 'cart'], function () {

    Route::post('/update/{product}', 'ProductController@updateProduct')->name('update');
});
Route::get('cart', 'ProductController@cart')->name('all');
Route::get('/{type}', 'IndexController@loadview');

查看文件:

<form action="{{route('remove', $slug)}}" method="POST" accept-charset="utf-8">
                            @csrf

                            <input type="submit" name="remove" value="x Remove" class="btn btn-danger"/>
                            </form>

ProductController:

   public function removeProduct(Product $product){
    return 'something';
      $oldCart = Session::has('cart') ? Session::get('cart') : null;
      $cart = new Cart($oldCart);
      $cart->removeProduct($product);
      Session::put('cart', $cart);
      return back()->with('message', "Product $product->title has been successfully removed From the Cart");
   }

1 个答案:

答案 0 :(得分:0)

Product删除removeProduct(Product $product) 就像在您的路线中一样使其可变

Route::post('/remove/{product}', 'ProductController@removeProduct')->name('remove');

但是如果您想使用这种removeProduct(Product $product)的东西

使用资源路由获取更多详细信息,以恢复相同的点击here