laravel-admin form submission error

 

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

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

 

solve:

Method 1: Use Add in the head

  use Encore\Admin\Controllers\HasResourceActions;
  

 

   Instructions:

    use HasResourceActions;

  

 

 

 

Solution 2:

  Add two methods

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

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

 

 

 

Guess you like

Origin www.cnblogs.com/jasonLiu2018/p/11927047.html