Method AppAdminControllersGoodsSpecController::store does not exist.
Method AppAdminControllersGoodsSpecController::update does not exist.
解决:
方法1:在头部添加使用方法
use EncoreAdminControllersHasResourceActions;
![](https://img2018.cnblogs.com/i-beta/1408995/201911/1408995-20191125125622879-330218947.png)
使用方法:
use HasResourceActions;
解决方法2:
添加两个方法
public function update($id){ return $this->form()->update($id); } public function store(){ return $this->form()->store(); }