@extends('frontend.layouts.main') @section('content') Blog Details Home Blog {{ $blog->title }} {{date("M d Y",strtotime($blog->created_at))}} {{$blog->author_name}} {!! $blog->long_description !!} @csrf Search Search Result {{-- 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
{{date("M d Y",strtotime($blog->created_at))}}
{{$blog->author_name}}