@extends('base') @section('title', __('Course Details')) @section('content')
{{__('Back')}}
@if(isset($course->adImages)) @foreach($course->adImages as $one)
@endforeach @endif
{{ $course->uniName }} {{ $course->courseName }}
{{__('Times Ranking')}}: @if($course->timesRanking!=0){{$course->timesRanking}}@else{{__('N/A')}}@endif {{__('QS Ranking')}}: @if($course->QSRanking!=0){{$course->QSRanking}}@else{{__('N/A')}}@endif
{!! $course->subtitle ?? '' !!}
@if($isCheap)
{{--需要判读是否为合作院校 不为合作院校不显示此处内容--}}
{!! __('course-details-yellow-text') !!}
@endif
@if($discount)
@if($isCheap) {{__('Service Deposit NOW')}} @else {{__('Service Charge NOW')}} @endif
@endif
@if($isCheap) {{__('Service Deposit')}}@if($discount){{__('Was')}}@endif @else {{__('Service Charge')}}@if($discount){{__('Was')}}@endif @endif
@if($discount) {{$currencySign.number_format(($course->discountPrice), 2, ".", ",")}} @endif {{$currencySign.number_format($course->serviceFees, 2, ".", ",")}}
@if($discount && !empty($course->countdown)) @include('components.styledCountdown', ['countdown' => $course->countdown]) @endif
@if(!empty($course->application_fees_course_id))
{{__('related-costs')}} {{__('view-application-fees')}}
@endif @if($course->enrollment_year_check != 1)
{!! __('Start Date Year') !!}
@foreach($startDateData as $key => $yearData) @endforeach
{!! __('Start Date Month') !!}
@if(empty($startDateData))
{{__('no_enrollment_year_notice')}}
@endif @endif
{{__('Chat with Us')}} @if($course->enrollment_year_check != 1 && empty($startDateData)) {{ __('Add to Bag') }} @else @if (\Illuminate\Support\Facades\Auth::check()) {{ __('Add to Bag') }} @else {{ __('Add to Bag') }} @endif @endif
@if($course->courseLevel == 2 && $course->thirdPartyStatus)
{{__('ucas-application')}}
@endif
{{__('Course Information')}}
{{__('Course Type')}}: {{ $course->courseLevelName}}
{{__('Duration')}}: @if(is_array(json_decode($course->duration))) @foreach(json_decode($course->duration) as $key=>$duration) {{$duration}} {{__('months')}} @if($key+1duration))) / @endif @endforeach @endif
{{__('course-start')}}: @if(is_array(json_decode($course->startDate))) @foreach(json_decode($course->startDate) as $key=>$startDate) {{__($startDate)}} @if($key+1startDate))) / @endif @endforeach @endif
{{__('Tuition Fee (per year)')}}: £{{number_format($course->tuitionFees, 2, '.', ',')}}
@if(!empty($deadline))
{{__('application-deadline')}}: {{$deadline}} {{__('(UK time)')}}
@endif @if(isset($course->bank_cas) && $course->bank_cas == 1)
*{{__('Bank Statement is needed to request CAS')}}
@endif
{!! nl2br($course->description) !!}
@if(!empty($course->entry_requirements)) @include('catalog.course_details_components.entry_requirements') @endif
@if($language === 'en')
{{__('10 Reasons to Choose UOFFER GLOBAL')}}
@else @endif
@include('catalog.course_details_components.application_documents', ['language' => $language])
{{--需要判读是否为合作院校 合作院校显示此处内容--}}
{{__('服务项目')}}
@if($language === 'en') @else @endif
{{__('服务流程')}}
{{--需要判读是否为合作院校 合作院校显示此处内容--}}
{{__('服务简介')}}
@if($language === 'en') @else @endif

{{__('所有合作院校')}}

{{__('所有顶级大学')}}

{{__('所有合作院校')}}

{{__('所有顶级大学')}}

@php( $prices = explode(';', config('app.price_course_' . ($currencyString ?? ''))) )

{{$prices[0] ?? ''}}

{{$prices[1] ?? ''}}

{{$prices[2] ?? ''}}

{{$prices[3] ?? ''}}

{{__('Fee Details')}}
{{__('This product uses an online one-time payment method')}}
@if($isCheap)
  • {{__('UKUOFFER service deposit')}}: @lang('Service-Deposit-Description')
  • {{__('University Application Fee')}}: {{__('The University Application Fee is a third-party fee charged by the university or UCAS. This payment will be forwarded directly to the university and all additional information can be found on the university’s official website.')}}
@else
  • {{__('included-line-1-bold-fee')}}: {{__('The service charge is an application fee for UOFFER GLOBAL that applies to all non-partnered universities. Students are not applicable to any refunds after enrolment.')}}
  • {{__('University Application Fee')}}: {{__('The University Application Fee is a third-party fee charged by the university or UCAS. This payment will be forwarded directly to the university and all additional information can be found on the university’s official website.')}}
@endif
@include('catalog.course_details_components.recommended_courses')
@include('common.modals.contents.qr_modal', [ 'header' => __('Signed up successfully_2'), 'image' => $randomStaffContact->wechatQR ?? (config('locations.systemImage.asset') . 'QRWechat.jpg' . '?' . $version), 'subText' => __('Contact our experts') ]) @include('modals.add_to_cart_validation_modal') @include('catalog.course_details_components.application_fees_modal') @include('catalog.course_details_components.shared_scripts', [ 'bagRoute' => route('addCourseToCart'), 'loadMore' => true ]) @endsection