| {{ __('ID') }} | {{ __('School Name') }} | {{ __('Email') }} | {{ __('Username') }} | {{ __('Amount Paid') }} | {{ __('Status') }} | {{ __('Created At') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|---|
| {{ $applicant->id }} | {{ $applicant->school_name }} | {{ $applicant->email }} |
|
${{ number_format($applicant->amount_paid, 2) }} |
|
{{ $applicant->created_at->format('M d, Y H:i') }} |
@if(in_array($applicant->status, ['pending', 'paid']) && ($applicant->amount_paid >= 50 || $applicant->status == 'paid'))
@elseif($applicant->status == 'database_pending')
@elseif($applicant->status == 'approved')
{{ __('Provisioned') }}
@elseif($applicant->status == 'rejected')
{{ __('Rejected') }}
@else
{{ __('Awaiting Payment') }}
@endif
@if(!in_array($applicant->status, ['approved', 'rejected']))
@endif
|
| {{ __('No school applications found.') }} | |||||||