content); } /** * Get the comment's author. * * @return User */ public function author() { return $this->belongsTo('User', 'user_id'); } /** * Get the comment's post's. * * @return Blog\Post */ public function post() { return $this->belongsTo('Post'); } }