{{ __('Back to Debtor List') }}

{{ __('Statement of Account') }}

{{ __('PayRide Management') }}

{{ __('Central Administration') }}

admin@isptickets.com

{{ $tenant->school_name ?? 'N/A' }}

{{ __('School ID:') }} {{ $tenant->id }}

{{ __('Subdomain:') }} {{ $tenant->domains->first()->domain ?? 'N/A' }}

@php $totalOut = 0; @endphp @forelse($invoices as $invoice) @if($invoice->status != 'paid') @php $totalOut += $invoice->amount; @endphp @endif @empty @endforelse
{{ __('Date') }} {{ __('Invoice #') }} {{ __('Description') }} {{ __('Amount') }} {{ __('Status') }}
{{ $invoice->created_at->format('M d, Y') }} #{{ $invoice->id }} {{ $invoice->description }} ${{ number_format($invoice->amount, 2) }} {{ strtoupper($invoice->status) }}
{{ __('No transactions recorded for this school.') }}
{{ __('Total Outstanding Balance:') }} ${{ number_format($totalOut, 2) }}