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(); }