Laravel Call to undefined method in eloquent model
I am trying to store a simple form into my database. My model is that I have jobs which where each job can contain several task. Therefore my Models look like this: User public function jobs() { return $this->hasMany(Job::class); }…