@extends('front.layouts.master') @section('content')

BLOG DETAILS

{{ $blog->title }}

{{ $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 }}
{{ $rb->title }}

{{ dateFormat($rb->blog_date, DISPLAY_DATE) }}

Posted By {{ $rb->posted_by }}

{!! $rb->short_description !!}
Read More
@endforeach
@endif
@endsection