@extends('layouts.frontend') @section('title', 'ব্লগ ও সংবাদ - ' . ($settings['site_name'] ?? 'সাংসদ পোর্টাল')) @section('content')

ব্লগ ও সংবাদ

সর্বশেষ খবর ও আপডেট

সব @foreach (\App\Models\Post::CATEGORIES as $key => $label) {{ $label }} @endforeach
@if ($featuredPosts->count() > 0 && !request('category'))

নির্বাচিত পোস্ট

@foreach ($featuredPosts as $post) @endforeach
@endif

@if (request('category')) {{ \App\Models\Post::CATEGORIES[request('category')] ?? 'সব পোস্ট' }} @else সর্বশেষ পোস্ট @endif

@if ($posts->count() > 0)
@foreach ($posts as $post)
@if ($post->featured_image)
{{ $post->title }}
@else
@endif
{{ $post->category_label }} {{ $post->published_at->diffForHumans() }}

{{ $post->title }}

@if ($post->excerpt)

{{ $post->excerpt }}

@endif
@if ($post->author->photo) {{ $post->author->name }} @endif {{ $post->author->name }}
{{ $post->views_count }} {{ $post->reading_time }} মিনিট
@endforeach
{{ $posts->links() }}
@else

কোনো পোস্ট পাওয়া যায়নি

এই বিভাগে এখনো কোনো পোস্ট প্রকাশিত হয়নি।

@endif
@push('styles') @endpush @endsection