@slot('title') {{ __('thank_you.thank_you_page') }} @endslot

{{ __('thank_you.thank_you') }}

{{ __('thank_you.you_successfully_submitted') }}

  • {{ __('thank_you.select_best_tutor') }}
  • {{ __('thank_you.add_checkout_details') }}
  • {{ __('thank_you.You_done') }}

{{ __('thank_you.thank_You_for_your_order') }} {{ __('thank_you.order_reference',['id' => $orderId]) }}

{!! __('thank_you.thanks_detail') !!}

{{ __('thank_you.order_summary') }}

    @php $discount = 0; $total = 0; @endphp @foreach ($orderItem as $item)
  • @if (!empty($item->options['image']) && Storage::disk(getStorageDisk())->exists($item->options['image']))
    {{$item->options['image']}}
    @else
    {{ $item->options['image']}}
    @endif
    !isActivePackage('kupondeal')])> @if($item->orderable_type == 'App\Models\SlotBooking') {{$item->options['session_time']}}

    {{ $item->title }}

    {{$item->options['subject_group']}} @elseif($item->orderable_type == 'Amentotech\Courses\Models\Course') {{$item->options['sub_category']}}

    {{ Str::ucfirst($item->title) }}

    @endif
    @if(isActivePackage('kupondeal') && !empty($item->discount_amount))
    {!! formatAmount($item->price, true) !!} {!! formatAmount(($item->price - ($item->discount_amount ?? 0)), true) !!} / @if($item->orderable_type == 'Amentotech\Courses\Models\Course') {{ __('courses::courses.course') }} @elseif($item->orderable_type == 'App\Models\SlotBooking') {{ __('checkout.session') }} @endif
    @else {!! formatAmount($item->price, true) !!}/ @if($item->orderable_type == 'Amentotech\Courses\Models\Course') {{ __('courses::courses.course') }} @elseif($item->orderable_type == 'App\Models\SlotBooking') {{ __('checkout.session') }} @endif @endif
  • @php if(isActivePackage('kupondeal')){ $discount += $item->discount_amount ?? 0; $total += ($item->price - ($item->discount_amount ?? 0)); } @endphp @endforeach
  • {{ __('thank_you.subtotal') }} {!! formatAmount($orderItem[0]->total, true) !!}
  • @if(isActivePackage('kupondeal') && $discount > 0)
  • {{ __('general.discount') }} {!! formatAmount($discount, true) !!}
  • @endif
  • {{ __('thank_you.grand_total') }} {!! formatAmount(isActivePackage('kupondeal') ? $total : $orderItem[0]->total, true) !!}