{{-- AJAX partial: Pending prayers list --}}
{{-- Filter --}}
Clear
@include('partials.message') @forelse($prayers as $prayer)
{{-- Card header --}}
{{ strtoupper(substr($prayer->submitter_name, 0, 1)) }}
{{ $prayer->submitter_name }}
@if($prayer->user && $prayer->user->email)
{{ $prayer->user->email }}
@endif
Submitted {{ $prayer->created_at->diffForHumans() }}
@if($prayer->category) {{ $prayer->category->emoji }} {{ $prayer->category->name }} @endif ⏳ PENDING
{{-- Prayer text (editable) --}}

Prayer Request

💡 You may edit for clarity or to remove personal details before approving.

{{-- Expiry + actions --}}

Set Expiry Duration

Expires approx. 60 days from now

{{-- View detail link --}}
@empty
🙏

No pending prayers

All caught up!

@endforelse {{-- Pagination --}} @if($prayers->hasPages())
{{ $prayers->links() }}
@endif
{{-- Reject modal --}}