@extends('layout.app')
@section('page-title', $data->title)
@section('breadcrumb')
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)