@php $payments = $this->sessions->where('amount', '>', 0); @endphp
{{ __('Payments') }}

{{ __('Confirmed and in-progress transactions') }}

{{ trans_choice(':count record|:count records', $payments->count(), ['count' => $payments->count()]) }}
@forelse ($payments as $p) @empty @endforelse
{{ __('Date') }} {{ __('Receipt') }} {{ __('Method') }} {{ __('Type') }} {{ __('Amount') }}
{{ $p->created_at->format('M j, Y, h:i A') }} {{ $p->created_at->isToday() ? __('Today') : $p->created_at->diffForHumans() }} {{ $p->mpesa_receipt ?: '—' }} {{ $p->mpesa_receipt ? __('M-Pesa') : __('Other') }} {{ ucfirst($p->source ?: 'hotspot') }} {{ money($p->amount, 0) }}
{{ __('No payments — this subscriber has only used free access.') }}