@extends('layout.app') @section('page-title', $data->title) @section('breadcrumb')
Home Order receipt
@endsection @section('content')
Thank you! Your order #{{ $data->orderModel->order_id }} was processed successfully! We've sent you an email to confirm the purchase. If you don't receive it within few minutes, please, make sure to check your spam folder.
@include('partials._billing_shipping_info', ['order' => $data->orderModel])
@include('partials._cart_items', ['order' => $data->orderCart, 'is_readonly' => true]) @include('partials._order_summary', [ 'orderSummaryData' => $data->orderSummaryData, 'is_order_receipt' => true, 'is_admin' => $data->admin ])
@if(!$data->admin) @endif @endsection @push('after-foot-non-admin-js') @if($data->orderModel->billFName != "Mr. Tester'" && !$data->orderCart->tags['has_NP'] && !$data->orderCart->tags['has_RP']) @endif @endpush @push('after-foot-js') @if(PROD_ENV === true) @include('partials._tracking_google_code', ['productDetailsDto' => $productDetailsDto]) @endif @endpush