@extends('base') @section('title', 'Payment Successful') @section('content') @include('common.no_cache')
{{"1 "}}{{__("Payment")}}
{{"2 "}}{{__("Order confirmation")}}
{{__('Thank you for your order')}}
{{__('Continue shopping')}}
{{__('Order reference number')}}{{":"}} {{$order->displayOrderNo}} {{__('Order confirmation email sent to')}}{{":"}}
关注服务号
获取最新申请进度
{{__('Your order details')}}
{{__('Your order')}} {{__('unit-price')}} {{__('Quantity')}} {{__('Subtotal-2')}}
@php use App\Enumerables\Currency; use App\Order; /** * @var Order $order */ $currency = ''; if ($order->currency == Currency::GBP) { $currency = '£'; } else { $currency = '¥'; } $language = config('app.locale') ?? 'zh'; @endphp @foreach($order->cartItems() as $item) @php /** * @var \App\OrderItems $item */ @endphp
{{$item->storedTitle($language, true)}} {{$item->storedSubtitle($language, true)}}
{{$currency }}{{number_format(($item->serviceFees + $item->depositFees) / $item->getCount(), 2)}}
{{$item->getCount()}}
{{$currency }}{{number_format($item->totalFees, 2)}}
@endforeach
{{__('original-price')}}{{": "}} {{$currency }} {{ number_format($order->total - $order->applicationFees, 2, ".", ",") }} @if($order->eventDiscounts > 0) {{__('Event Discount')}}{{": "}} -{{$currency }} {{number_format($order->eventDiscounts, 2, ".", ",")}} @endif @if($order->discountTotal > 0) {{__('Discount-success')}}{{": "}} -{{$currency }} {{number_format($order->discountTotal, 2, ".", ",")}} @endif @php $refundAmount = $order->orderRefund(); @endphp @if($refundAmount > 0) {{__('Refund Amount')}}{{": "}} -{{$currency }} {{number_format($refundAmount, 2, ".", ",")}} @endif {{__('Total')}}{{": "}} {{$currency }} {{ number_format($order->paidTotal, 2, ".", ",") }}
@if($order->totalCourses > 0) @if(!$applicationForm)
{{__('Fill in application form')}}
{{__('Go to')}} {{__('Application Form')}} {{__('to fill in and submit your application form')}}
@elseif(!$applicationDocuments)
{{__('Upload documents')}}
{{__('Go to')}} {{__('Application Documents')}} {{__('to upload required documents')}}
@else
{{__('Track application status')}}
{{__('Want to know your application status? Just click')}} {{__('here')}} {{__('to track it')}}
@endif @endif @if($order->totalTranslations > 0)
{{__('Upload Translation File')}}
{{__('Please visit')}} {{__('My Translations')}} {{__('to upload your translation files and to follow the progress of your translation.')}}
@endif
{{__('FAQs')}}
{{__('Check our-success')}} {{__('Frequently Asked Questions')}} {{__('for information on tracking your order')}}
@endsection