$body, // 'post_id' => $this->id, // ]); $this->comments()->create(compact('body')); } public function comments() { return $this->hasMany(Comment::class); } public function user() { return $this->belongsTo(User::class); } }