Expected Revenue

₦ {{ number_format($expectedamount) }}

{{ number_format($expectedstudents) }} Student(s)

Generated Revenue

₦ {{ number_format($paidamount) }}

{{ number_format($paidstudents) }} Student(s)

Outstanding Revenue

₦ {{ number_format($expectedamount - $paidamount) }}

{{ number_format($expectedstudents - $paidstudents) }} Student(s)
@error('paymentstatus') {{ $message }} @enderror
@error('description') {{ $message }} @enderror
@error('paymentdate')

{{ $message }}

@enderror
@error('refrencenumber')

{{ $message }}

@enderror
@if ($trxs == null)

No Transactions

@endif @if ($trxs != null)
Transactions
{{ $trxs->links() }}
@if ($trxs->count() < 1) @endif @if ($trxs->count() > 0) @foreach ($trxs as $index => $trx) @endforeach @endif
# School Refrence Number Student No. Amount Exam type Exam year Status Date
No Transactions
{{ $index + 1 }} {{ $trx->school ? $trx->school->name : '' }} {{ $trx->refrencenumber }} {{ $trx->studentno }} {{ $trx->amount }} {{ $trx->examtype ? $trx->examtype->examcode : '' }} {{ $trx->examyear ? $trx->examyear->year : '' }} {{ $trx->status }} {{ $trx->created_at ? $trx->created_at->format('d-M-Y') : '' }}
@endif