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

{{ __('Our Blog') }}

{{ __('Stay updated with the latest news, tips, and insights') }}

@forelse($result as $blog)
@if ($blog->thumbnail) {{ $blog->title }} @else
@endif
@if ($blog->category_id && $blog->category) {{ $blog->category->name }} @else {{ __('Uncategorized') }} @endif
{{ $blog->title }}

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

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