@php $payments = $this->sessions->where('amount', '>', 0); @endphp
{{ __('Confirmed and in-progress transactions') }}
| {{ __('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.') }} | ||||