@props([ 'title' => 'Summary', 'order' => $order, ])
{{ $title ?? '' }}
{{--

On {{ displayDateFormat($order->order_date) ?? '' }}, an order was placed with the ID {{ $order->order_id ?? '' }}, The order, which falls under the {{ $order->order_type ?? '' }} type and is currently marked as {{ $order->order_status ?? '' }}, has a total of {{ $order->total ?? '' }}. There were no discounts applied, and the total amount due matches the subtotal. The order includes {{ count($order->products) ?? '' }} products, with no shipping charges or taxes incurred. The entry was created and updated on {{ displayDateFormat($order->update_date) ?? '' }}. There are no cancellation details associated with this order.

--}}

Order Date :

{{ date('d M, Y', strtotime($order->order_date)) ?? '' }}

Update Date :

{{ date('d M, Y', strtotime($order->update_date)) ?? '' }}

Order Type :

{{ $order->order_type ?? '' }}

Status :

{{ $order->order_status ?? '' }}
Info
@php $orderBasicInfo = orderBasicInfo($order); @endphp @foreach ($orderBasicInfo as $label => $details) @if (!is_null($details['value']) && $details['value'] !== '---')

{{ ucfirst(str_replace('_', ' ', $label)) }}:

{{ $details['value'] }}
@endif @endforeach
@php $billingAddressArr = orderBillingInfo($order); $shippingAddressArr = orderShippingInfo($order); @endphp
@foreach ($billingAddressArr as $key => $bill) @if (!is_null($bill))
@endif @endforeach
@foreach ($shippingAddressArr as $key => $bill) @if (!is_null($bill))
@endif @endforeach

Coupons