{{ __('Pending Invoice Payment Proofs from Schools') }}
{{ __('Record New Payment') }}
@forelse($tenantUploads as $payment) @empty @endforelse
No. School (Tenant) Proof Invoice Ref Amount Payment Method Date Submitted Action
{{ $loop->iteration }} {{ optional($payment->tenant)->school_name ?? $payment->tenant_id }} @if($payment->proof_of_payment) @php $ext = strtolower(pathinfo($payment->proof_of_payment, PATHINFO_EXTENSION)); @endphp @else {{ __('None') }} @endif #{{ $payment->invoiceid }} ${{ number_format($payment->amt_paid, 2) }} {{ ucwords(str_replace('_', ' ', $payment->payment_method ?? 'N/A')) }} {{ $payment->created_at->format('d/m/Y H:i') }}
@csrf
{{ __('No payment proofs awaiting review.') }}
{{ __('Pending Registration Proofs from New Applicants') }}
@forelse($applicantProofs as $applicant) @empty @endforelse
No. School Name Applicant Username Proof Date Submitted Status Action
{{ $loop->iteration }} {{ $applicant->school_name ?? 'N/A' }} {{ $applicant->username }} @if($applicant->proof_of_payment) @php $ext2 = strtolower(pathinfo($applicant->proof_of_payment, PATHINFO_EXTENSION)); @endphp @else {{ __('None') }} @endif {{ $applicant->updated_at->format('d/m/Y') }} {{ strtoupper($applicant->status) }} @if($applicant->status == 'pending')
@csrf
@else {{ __('Approved') }} @endif
{{ __('No registration proofs awaiting review.') }}