class Post extends Model { // 1 Post has many comments public function comments() { return $this->hasMany(Comment::class); } }