@extends('front.layouts.master') @section('content') BLOG DETAILS Home Blog Details BLOG DETAILS {{ $blog->title }} {{ dateFormat($blog->blog_date, DISPLAY_DATE) }} Posted By {{ $blog->posted_by }} {!! $blog->description !!} @if(isset($recentBlogs) && count($recentBlogs) > 0) Recent Posts @foreach($recentBlogs as $rb) {{ $rb->title }} {{ dateFormat($rb->blog_date, DISPLAY_DATE) }} Posted By {{ $rb->posted_by }} {!! $rb->short_description !!} Read More @endforeach @endif @endsection