@extends('frontend.layouts.main') @section('content')

Blog Details

{{ $blog->title }}

{{date("M d Y",strtotime($blog->created_at))}}

{{$blog->author_name}}

{!! $blog->long_description !!}
{{--
Categories
    @foreach ($blogCategory as $cat) @if ($cat->blogs->count() > 0)
  • {{$cat->title}}
  • @endif @endforeach
--}}
Related Post
@foreach ($relatedBlogs as $blog)
{{$blog->title}}
@endforeach
Recent Post
@foreach ($recentBlogs as $blog)
{{ucfirst(strtolower($blog->title))}}
@endforeach
@endsection @push('scripts') @endpush