@extends('website.includes.master') @section('title') Blog Detail @endsection @section('content')

{{ $blog->heading }}

{{ $blog->heading }}

{{ \Carbon\Carbon::parse($blog->created_at)->format('d M') }}

{!! $blog->description !!}
@if(!empty($blog->blog_images))
@forelse($blog->blog_images as $blogImage)
{{ $blog->heading }}
@empty @endforelse
@endif @if(!empty($blog->more_description))
{!! $blog->more_description !!}
@endif
@endsection