@extends('shop::layouts.master') @push('pageTitle') {{ __('shop::app.checkout.success.title') }} @endpush @section('content-wrapper')

{{ core()->getConfigData('shop.lite-checkout') ? __('shop::app.checkout.success.lite-info') : __('shop::app.checkout.success.thanks') }}

{!! __('shop::app.checkout.success.order-id-info', ['order_id' => '' . $order->order_no . '']) !!}

@if(core()->getConfigData('shop.affiliate') && auth()->guard('customer')->check())

{{ __('shop::app.checkout.success.affiliate') }} : {{route('shop.home.affiliate', ['id' => auth()->guard('customer')->user()->id])}}

@endif @if(!core()->getConfigData('shop.lite-checkout'))

{{ __('shop::app.checkout.success.info') }}

{{ view_render_event('bagisto.shop.checkout.continue-shopping.before', ['order' => $order]) }}
{{ __('shop::app.checkout.cart.continue-shopping') }}      @include('shop::checkout.email')
@endif {{ view_render_event('bagisto.shop.checkout.continue-shopping.after', ['order' => $order]) }}
@endsection