laravel-admin 表单提交报错

 

Method App\Admin\Controllers\GoodsSpecController::store does not exist.

Method App\Admin\Controllers\GoodsSpecController::update does not exist.

 

解决:

方法1:在头部添加使用方法

  use Encore\Admin\Controllers\HasResourceActions;
  

 

   使用方法:

    use HasResourceActions;

  

 

 

 

解决方法2:

  添加两个方法

   public function update($id){
        return $this->form()->update($id);
    }

    public function store(){
        return $this->form()->store();
    }

 

 

 

posted on 2019-11-25 12:58  潇潇六月雨  阅读(1636)  评论(0编辑  收藏  举报

导航