@extends('front-end.layouts.apps') @section('title', $blog->title ?? 'بلاګ تفصیلات') @section('page_title', $blog->title ?? 'بلاګ تفصیلات') @section('main_container')
{{-- Back button --}}
ټول بلاګونه
{{-- Blog post card --}}
{{-- Featured image --}} @if($blog->image)
{{ $blog->title }}
@endif {{-- Content --}}
{{-- Meta info --}}
@if($blog->category) {{ $blog->category->name ?? 'بلاګ' }} @endif {{ $blog->created_at ? $blog->created_at->format('Y/m/d') : '' }} @if($blog->author) {{ $blog->author }} @endif
{{-- Title --}}

{{ $blog->title }}

{{-- Body --}}
{!! $blog->body !!}
{{-- Share buttons --}}
{{-- Related posts --}} @if(isset($relatedBlogs) && $relatedBlogs->count() > 0)

ورته بلاګونه

@foreach($relatedBlogs as $related)
@endforeach
@endif {{-- Bottom Navigation --}}
@endsection