@extends("frontend.layout.main") @section("content")
@if(isset($single))
{{ $single->title }}

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) @endforeach @else

No latest news found.

@endif
@endsection