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

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

@if (auth()->guard('customer')->user()) {!! __('shop::app.checkout.success.order-id-info', [ 'order_id' => '' . $order->increment_id . '' ]) !!} @else {{ __('shop::app.checkout.success.order-id-info', ['order_id' => $order->increment_id]) }} @endif

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

{{ view_render_event('bagisto.shop.checkout.continue-shopping.before', ['order' => $order]) }} {{ view_render_event('bagisto.shop.checkout.continue-shopping.after', ['order' => $order]) }}
@endsection