@if(!empty($programs))
@foreach ($programs as $keys=> $program)
@if($keys == 0)
{{ substr( $program['university_name'], 0, 50).'...'; }}
{{ !empty($program['created_at']) ?
date('d-M-Y', strtotime($program['created_at'])) : '' }}
{{ !empty($program['program_level']) ? $program['program_level'] : '' }}
{{ !empty($program['program_length']) ? $program['program_length'] : '' }}
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
Program Detail
{{ !empty($program['program_summary']) ? $program['program_summary'] : '' }}
@endif
@endforeach
@endif