coderstape / freeCodeGram

Companion code for the Laravel from Scratch Complete Course on freecodecamp.org
360 stars 504 forks source link

Undefined method 'posts' #5

Closed SaloRB closed 4 years ago

SaloRB commented 4 years ago

I'm getting the error on PostsController

auth()->user()->posts()->create($data);

User.php is creating the function posts: public function posts() { return $this->hasMany(Post::class); }