Open jimmycheng-web opened 1 year ago
你好,在本書第12.12 修改app\Http\Controllers\AnimalController.php -store()
$animal = auth()->user()->animals()->create($request->all());我的這一行一值會顯示animals沒有實作他, 但我的Models/User.php已經有建立這一行 public function animals() { return $this->hasMany('App\Models\Animal', 'user_id', 'id'); }
您好!如果出現這個錯誤 Undefined method 'animals' 建議可以把所有檔案儲存後再嘗試看看,如果還是不行可能要再提供完整的 User.php 檔案內容
你好,在本書第12.12 修改app\Http\Controllers\AnimalController.php -store()
$animal = auth()->user()->animals()->create($request->all());我的這一行一值會顯示animals沒有實作他, 但我的Models/User.php已經有建立這一行 public function animals() { return $this->hasMany('App\Models\Animal', 'user_id', 'id'); }