posts
id,name
comments
id, post_id, user_id
user
id,name,image
$post = Post::where("alias", $alias)->first();
$comments = $post->comments;
public function comments()
{
return $this->hasMany('App\Post', 'post_id');
}