@extends('website.includes.master') @section('title') Blog Detail @endsection @section('content') Home Blog Details {{ $blog->heading }} {{ \Carbon\Carbon::parse($blog->created_at)->format('d M') }} By {{ $setting->name }} {!! $blog->description !!} @if(!empty($blog->blog_images)) @forelse($blog->blog_images as $blogImage) @empty @endforelse @endif @if(!empty($blog->more_description)) {!! $blog->more_description !!} @endif LATEST BLOGS @forelse($recent_blogs as $recent_blog) By {{ $setting->name }} {{ Str::limit($recent_blog->heading,30) }} @empty @endforelse Categories @forelse($categories as $category) {{ $category->name }} @empty @endforelse Tags @if(!empty($blog->blog_tags_data)) @foreach($blog->blog_tags_data as $blog_tag) {{ $blog_tag->tag }} @endforeach @endif @endsection
{{ \Carbon\Carbon::parse($blog->created_at)->format('d M') }}