@extends($activeTheme.'layouts.main')
@section('title', $blog->title)
@section('description', text_shorting(strip_tags($blog->description), 150))
@section('og_image', asset('storage/blog/'.$blog->image))
@section('content')
{{$blog->title}}
{{ ___('By :author', ['author' => $blog->user->name]) }}
{!! ads_on_top() !!}
@if($settings->blog_banner && isset($blog->image))
@endif
{{ $blog->title }}
{!! $blog->description !!}
@if(!empty($blog->tags))
@endif
@include($activeTheme.'blog.sidebar')
{!! ads_on_top() !!}
@push('scripts_at_bottom')
{!! google_captcha() !!}
@endpush
@endsection
{{ ___('Comments') }} ({{ $blogComments->count() }})
@forelse ($blogComments as $blogComment) @include($activeTheme.'blog.comment', [ 'blog_id' => $blog->id, 'blogComment' => $blogComment, 'level' => 1 ]) @empty- {{ ___('No comments found') }}
@endforelse