@php $pageLink = getThemeOption('page_setting') ?? []; $pageLink = $pageLink['job_list_url'] ?? 'javascript:void(0)'; $countBlogComment = CountBlogComment($blog->id) ?? []; $breadcrumbOption = getThemeOption('breadcrumb') ?? []; $breadcrumbImg = $breadcrumbOption['breadcrumb_img'] ?? null; $breadcrumbColor = $breadcrumbOption['breadcrumb_color'] ?? '#f1f1f1'; @endphp @extends('front.layouts.master') @section('title', $blog->getTranslation('blog_title')) @section('content')
@endif
{{ translate('Comments') }} ({{ $countBlogComment < 10 ? '0' . $countBlogComment : $countBlogComment }})
@foreach ($blog->comments as $comment)-
{{ translate('Reply') }}
@if ($comment->replies->count() > 0)
({{ $comment->replies->count() }})
@endif
@endforeach
{{ $comment->name }},
{{ customDateFormate($comment->created_at) }}{{ $comment->comment }}
@foreach ($comment->replies as $reply)-
{{ translate('Reply') }}
@endforeach
{{ $reply->name }},
{{ customDateFormate($reply->created_at) }}{{ $reply->comment }}
{{ translate('Leave Your Comment') }}: