@extends('students.layouts.layout') @section('content')
Unpaid Applications
@if (session()->has('message'))
{{ session()->get('message') }}
@endif
The student's profile is incomplete and the system is not able to determine eligibility or calculate correct administration fees due to incomplete information. It is highly advised that you complete the profile before submitting applications.
@if (session()->has('success'))
{{ session()->get('success') }}
@endif
{{--
--}}
Status App # School Program ESL Start Date Start Date Applied Date Fees
{{-- {{ $applyPrograms }} --}} @forelse ($applyPrograms as $key => $item)
{{--
--}}
Payment Pending
{{ $item->application_number }}
ESL
Academic
Likely Open
{{-- {{ @$item->start_date ? date('M d, Y', strtotime($item->start_date)) : '--' }} --}}
{{ date('M d, Y', strtotime($item->created_at)) }}
Application Fee
@if ($item->fees == 0)
Free
@else
{{ get_currency($item->getUniversity->country) . number_format($item->fees, 2) }}
@endif
{{-- --}}
@if ($item->application_status == 1) @else @if ($item->program_status != 1) FillUp @endif @endif
{{-- --}}
@csrf @method('DELETE') {{-- --}}
@if ($item->program_status == 1) accepted @elseif ($item->program_status == 3) rejected @else pending @endif
@empty @endforelse
{{--
Total £0.00 GBP
--}}
Find More Program {{-- --}}
@endsection @push('js') @endpush