@extends('inner_layout') @section('title') {{ $blog->seo_title }} @endsection @section('frontend_content')

{{ $blog?->title }}

{!! clean($blog?->description) !!}

{{ __('Comments') }} {{ $blog?->total_comment == 0 ? '0' : str_pad($blog?->total_comment, 2, '0', STR_PAD_LEFT) }}

@foreach ($blog?->comments as $blog_comment)

{{ $blog_comment?->name }}

{{ $blog_comment?->created_at?->format('F d, Y') }}

{{ $blog_comment?->comment }}

@endforeach

{{ __('Leave a Comment') }}

{{ __(' Your email address will not be published. Required fields are marked *') }}

@csrf
@include('blog_sidebar')
@endsection