- {{ __('Home') }} @if($blog->category_id)
- {{ $blog->child_string_displayed('category', 'name') }} @endif
- {{ $blog->title }}
- {{ $blog->get_date() }}
- {{ __('Tags') }} @foreach($blog->array_tags as $index => $tag) {{ $tag }} @if($index !== (count($blog->array_tags)-1)) , @endif @endforeach
@foreach($blog->comments as $comment)-
{{ __('Posted by') }}
{{ $comment->name }}
| {{ $comment->get_date() }}
@endforeach
{!! nl2br($comment->message) !!}