@extends('front_end.layouts.home') @php $showRightSidebar = false; @endphp @section('left_sidebar') @include('front_end.pages.blogs.blogs_left_sidebar') @endsection @section('title', $category->name . ' - ' . __('Blog Categories')) @section('content')

{{ $category->name }}

{{ $category->description }}

@forelse($blogs as $blog)
@if($blog->thumbnail) {{ $blog->title }} @else
@endif
{{ $blog->title }}

{{ Str::limit($blog->description, 120) }}

{{ $blog->created_at->format('M d, Y') }} {{ __('Read More') }}
@empty
{{ __('No blog posts found in this category.') }}
@endforelse
{{ $blogs->links('pagination::bootstrap-5') }}
@endsection