@if($blog->allow_comments == 1)
{{ $comment->name }} - {{ $comment->created_at->diffForHumans() }}
{{ $comment->body }}
Comments {{ $total_comments }} Comments
@if(count($comments) < 1)No comments yet! Be the first to comment
@else @foreach($comments as $comment){{ $comment->name }} - {{ $comment->created_at->diffForHumans() }}
{{ $comment->body }}