@extends('front.include.app') @section('meta_title', $blog->meta_title ?? '') @section('meta_description', $blog->meta_description ?? '') @section('content') {{ $blog->blog_title }} {{ $blog->created_at->format('F d, Y') }} @if($blog->getFirstMediaUrl('blog_image')) @endif {!! $blog->blog_content !!} Share this post: Facebook Twitter LinkedIn Recent Posts @foreach($recentBlogs as $recent) @if($recent->getFirstMediaUrl('blog_image')) @else @endif {{ Str::limit($recent->blog_title, 40) }} {{ $recent->created_at->format('M d, Y') }} @endforeach @endsection