@extends('layouts.state') @section('title', 'Federation Cup Payments') @section('page-title', 'Federation Cup Payments Summary') @section('content')
{{ $event->title ?? 'Federation Cup' }}
State: {{ $state_short_name ?? 'N/A' }} — Total Pending: {{ number_format($totals['total_pending'] ?? 0, 2) }}
Back to Registration
Users with Offline Pending Payments
@forelse ($rows as $index => $row) @empty @endforelse
# User UID Participants Pending Amount Action
{{ $index + 1 }}
{{ $row->full_name ?? 'N/A' }}
{{ $row->email ?? '' }}
{{ $row->reg_uid ?? '-' }} {{ $row->participants_count ?? 0 }} {{ number_format($row->pending_amount ?? 0, 2) }} View Details
No offline pending payments found for this event and state.
@endsection @push('styles') @endpush @push('scripts') @endpush