@extends("frontend.layout.main") @section("content") @if(isset($blog)) Published on: {{ $blog->created_at->format('d-M-Y') }} {{ $blog->title ?? 'Blog Title' }} {!! $blog->description !!} @else No blog found. @endif {{$categoryName ?? "Latest Blogs" }} @if(isset($blogs) && $blogs->count() > 0) @foreach ($blogs as $item) {{ $item->title ?? 'Blog Title' }} @endforeach @else No latest blogs found. @endif @endsection
Published on: {{ $blog->created_at->format('d-M-Y') }}
No blog found.
No latest blogs found.