Method App\Admin\Controllers\GoodsSpecController::store does not exist.
Method App\Admin\Controllers\GoodsSpecController::update does not exist.
解决:
方法1:在头部添加使用方法
使用方法:
解决方法2:
添加两个方法
public function update($id){ return $this->form()->update($id); } public function store(){ return $this->form()->store(); }
原文:https://www.cnblogs.com/jasonLiu2018/p/11927047.html