@if(!empty($programs))
@foreach ($programs as $keys=> $program)
@if($keys == 0)
@if(!empty($bannerImage))
@else
@endif
@if(!empty($logoImage))
@else
@endif
{{ substr( $program['program_title'], 0, 50).'...'; }}
{{ !empty($program['created_at']) ?
date('d-M-Y', strtotime($program['created_at'])) : '' }}
Program Level
{{ !empty($program['program_level']) ? $program['program_level'] : '' }}
Program Length
{{ !empty($program['program_length']) ? $program['program_length'] : '' }}
Cost of Living
@if(!empty($program['universityData'][0]['country']))
{{ get_currency($program['universityData'][0]['country']) }}
@endif
{{ !empty($program['cost_of_living']) ? $program['cost_of_living'] : '' }}
@if(!empty($program['universityData'][0]['country']))
{{ get_payment_currency($program['universityData'][0]['country']) }}
@endif
Tuition Fees
@if(!empty($program['universityData'][0]['country']))
{{ get_currency($program['universityData'][0]['country']) }}
@endif
{{ !empty($program['gross_tuition']) ? $program['gross_tuition'] : '' }}
@if(!empty($program['universityData'][0]['country']))
{{ get_payment_currency($program['universityData'][0]['country']) }}
@endif
Application Fee
@if(!empty($program['universityData'][0]['country']))
{{ get_currency($program['universityData'][0]['country']) }}
@endif
{{ !empty($program['application_fee']) ? $program['application_fee'] : '' }}
@if(!empty($program['universityData'][0]['country']))
{{ get_payment_currency($program['universityData'][0]['country']) }}
@endif
Institution Details
Founded
@if(!empty($program['universityData'][0]['founded']))
{{ $program['universityData'][0]['founded'] }}
@endif
School ID
@if(!empty($program['universityData'][0]['school_id']))
{{ $program['universityData'][0]['school_id'] }}
@endif
DLI number
@if(!empty($program['universityData'][0]['provider_id_number']))
{{ $program['universityData'][0]['provider_id_number'] }}
@endif
Institution type
@if(!empty($program['universityData'][0]['institution_type']))
{{ $program['universityData'][0]['institution_type'] }}
@endif
Program Intakes
@if(!empty($program['programIntakes']))
@foreach ($program['programIntakes'] as $key => $intake)
@if ($intake->intake_status == '1')
Open
@elseif ($intake->intake_status == '2')
Likely Open
@elseif ($intake->intake_status == '2')
Will Open
@else
Wait List
@endif
Open date
{{ $intake->open_date ?? 'No data available' }}
@if ($intake->intake_status == '1')
{{ date('M Y', strtotime($intake->intake_date)) }}
@elseif ($intake->intake_status == '2')
{{ date('M Y', strtotime($intake->intake_date)) }}
@elseif ($intake->intake_status == '2')
{{ date('M Y', strtotime($intake->intake_date)) }}
@else
{{ date('M Y', strtotime($intake->intake_date)) }}
@endif
Submission deadline
{{ $intake->deadline ?? 'No data available' }}
@endforeach
@endif
Program Summary
{{ !empty($program['program_summary']) ? $program['program_summary'] : '' }}
Back
@endif
@endforeach
@endif