@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')}}: {{__('N/A')}} {{__('QS Ranking')}}: {{__('N/A')}}
{!! $course->subtitle ?? '' !!}
{{__('Charge')}}
{{$currencySign.number_format($course->serviceFees, 2, ".", ",")}}
{{__('Chat with Us')}} @if (\Illuminate\Support\Facades\Auth::check()) {{ __('Add to Bag') }} @else {{ __('Add to Bag') }} @endif
@if($course->courseLevel == 2 && $course->thirdPartyStatus)
{{__('ucas-application')}}
@endif
{{__('Cost Details')}}
{{__('course-fees-text-1')}}
{{__('course-fees-text-2')}}
{{__('course-fees-text-3-1')}} {{__('course-fees-text-3-2')}}
{{__('course-fees-note')}}
@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