@php
$entry_requirements = $course->entry_requirements;
if ($entry_requirements && isset($entry_requirements['UKPO_virtual'])) {
$UKPO_virtualData = $entry_requirements['UKPO_virtual'];
unset($entry_requirements['UKPO_virtual']);
} else {
$UKPO_virtualData = false;
}
@endphp
{{__("Student Background Information")}}
{{current($entry_requirements)['backgroundName']}}
{{__('申请类型')}}
{{$course->courseLevelName ?? ''}}
| {{__('academic_requirements')}} |
{{__('language_requirements')}} |
{{__('other_requirements')}} |
@foreach($entry_requirements as $reqBackgroundKey=>$backgroundRequirements)
@foreach($backgroundRequirements['type'] as $requirementType=>$v)
@if(($backgroundRequirements['backgroundName'] == "UK postgraduate" || $backgroundRequirements['backgroundName'] == "英国硕士") && $requirementType == 'academic')
{{__('3 years UK undergraduate')}}:
@endif
@foreach($v as $lineKey => $lineValues)
-
@php
$subLineKey = substr($lineKey, 0, 22);
if ($subLineKey == 'otherCn_course_details' || $subLineKey == 'otherEn_course_details')
$lineKey = $subLineKey;
@endphp
@if(!empty($lineValues['value']))
{!! __($lineKey, $lineValues) !!}
@else
{{__($lineKey.'_empty')}}
@endif
@endforeach
@if(($backgroundRequirements['backgroundName'] == "UK postgraduate" || $backgroundRequirements['backgroundName'] == "英国硕士") && $requirementType == 'academic' && $UKPO_virtualData)
{{__('UK postgraduate')}}:
@foreach($UKPO_virtualData['type']['academic'] as $lineKey => $lineValues)
-
@php
$subLineKey = substr($lineKey, 0, 22);
if ($subLineKey == 'otherCn_course_details' || $subLineKey == 'otherEn_course_details')
$lineKey = $subLineKey;
@endphp
@if(!empty($lineValues['value']))
{!! __($lineKey, $lineValues) !!}
@else
{{__($lineKey.'_empty')}}
@endif
@endforeach
@endif
|
@endforeach
@endforeach