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