{{ $post->title }} {{ $post->created_at->formatLocalized('%A %d %B %Y') }} @foreach ($post->categories as $category) {{ $category->title }} @endforeach {!! $post->body !!} @if ($post->tags->count()) @lang('Tagged in') : @foreach($post->tags as $tag) {{ $tag->tag }} @endforeach @endif {{ $post->user->name }} @if ($post->previous) @lang('Previous') {{ $post->previous->title }} @endif @if ($post->next) @lang('Next') {{ $post->next->title }} @endif
{{ $post->valid_comments_count }} {{ trans_choice(__('comment|comments'), $post->valid_comments_count) }}
@if ($post->valid_comments_count) @php $level = 0; @endphp@include('front/comments/comments', ['comments' => $parentComments])
@if ($post->parent_comments_count > config('app.numberParentComments'))@lang('More comments')
@lang('Leave a Comment')
@if (Auth::check()) @else @lang('You must be logged to add a comment !') @endif