@extends('front-end.layouts.apps')
@section('title', $category->title_ps ?? $category->title)
@section('page_title', $category->title_ps ?? $category->title)
@section('main_container')
{{-- Header with category name and back button --}}
{{-- Poetry count --}}
ټول شعرونه: {{ $poetries->total() }}
{{-- Poetry list --}}
@if($poetries->count() > 0)
@foreach($poetries as $poetry)
@endforeach
{{-- Pagination --}}
{{ $poetries->links('pagination::bootstrap-4') }}
@else
په دې کټګورۍ کې تر اوسه شعر نشته.
@endif
{{-- spacer for bottom nav --}}
{{-- Bottom Navigation --}}
@endsection