--}}

Order Information
{{-- --}} {{-- --}}
Order Date {{ $order->created_at->format('Y-m-d H:i:s A') }}
Order Status {{ $order->status }}
Shops -|-
Update Picked up / delivered Date
@csrf
Delivery Details {{ $order->city }} ,{{ $order->time }} ,{{ date('d-m-Y', strtotime($order->date)) }}
Account Information
Customer Name {{ $order->name . ' ' . $order->lastname }}
Email {{ $order->email }}
Phone No. {{ $order->phone }}
Customer Group General

Billing Address
Name {{ $order->address?->name }}
Email {{ $order->address?->email }}
Contact {{ $order->address?->phone }}
City {{ $order->address?->city }}
State {{ $order->address?->state }}
Country Canada
Pin Code {{ $order->address?->pincode }}
Address {{ $order->address?->address }}
Comments {{ $order->note }}
Shipping Address
Name {{ $order->address?->name }}
Email {{ $order->address?->email }}
Contact {{ $order->address?->phone }}
City {{ $order->address?->city }}
State {{ $order->address?->state }}
Country Canada
Pin Code {{ $order->address?->pincode }}
Address {{ $order->address?->address }}
Comments {{ $order->note }}

Payment Information
Payment Method {{ $order->shipping_method }}
Currency USD
Payment Order Id {{ $order->payment_id }}
Shipping Information
Shipping Method {{ $order->delivery_type }}
Shipping Price $0.00

{{-- --}} @foreach ($order->items as $key => $item) @endforeach @if ($order->kidscakeitems) @foreach ($order->kidscakeitems as $key => $item) @endforeach @endif @if ($order->wedCakeitems) @foreach ($order->wedCakeitems as $key => $item) @endforeach @endif @if ($order->customCartitems) @foreach ($order->customCartitems as $key => $item)
Sl Product Name Flavours SKU Quantity PriceTax Percent Tax AmountGrand Total
{{ $key + 1 }} {{ $item->name }} @if ($item->variant) {{ $item->variant?->variant_value?->name }} @else - @endif {{ $item->sku }} {{ $item->quantity }} ${{ number_format($item->price ?? 0, 2) }} ${{ number_format($item->total_amount ?? 0, 2) }}
{{ $key + 1 }} Custom Kids Cake({{ $item->cake_design_name }}) 1 ${{ number_format($item->total_amount ?? 0, 2) }} ${{ number_format($item->total_amount ?? 0, 2) }}
Custom Kids cake Details
Sl No Attribute Values Price
1 {{ $item->cake_design_name }} N/A $0
2 Shape {{ $item->shape }} {{ $item->shape_price }}
3 Cake Type {{ $item->cake_type }} {{ $item->cake_type_price }}
4 Flavour {{ $item->flavour }} {{ $item->flavour_price }}
5 Cake Stand {{ $item->cake_stand }}
6 Cake Topper {{ $item->cake_topper }}
{{ $key + 1 }} wedding design Cake({{ $item->cake_design_name }}) 1 ${{ number_format($item->total_amount ?? 0, 2) }} ${{ number_format($item->total_amount ?? 0, 2) }}
Custom Kids cake Details
Sl No Attribute Values Price
1 {{ $item->cake_design_name }} N/A $0
2 Shape {{ $item->shape }} {{ $item->shape_price }}
3 Cake Type {{ $item->cake_type }} {{ $item->cake_type_price }}
4 Flavour {{ $item->flavour }} {{ $item->flavour_price }}
5 Cake Stand {{ $item->cake_stand }}
6 Cake Topper {{ $item->cake_topper }}
{{ $key + 1 }} custom design Cake({{ $item->cake_customcake_name }}) 1 ${{ number_format($item->total_amount ?? 0, 2) }} ${{ number_format($item->total_amount ?? 0, 2) }}
Custom Designed cake Details
Sl No Attribute Values Price
1 {{ $item->cake_customcake_name }} N/A $0
2 Shape {{ $item->shape }} {{ $item->shape_price }}
3 Flavour {{ $item->flavour }} {{ $item->flavour_price }}
4 Cake Stand {{ $item->cake_stand }}
5 Cake Topper {{ $item->cake_topper }}
@endforeach @endif
Subtotal - ${{ number_format($order->total_amount ?? 0, 2) }}
Tax - ${{ number_format($order->tax_total ?? 0, 2) }}
Discount - ${{ number_format($order->discount_amount ?? 0, 2) }}
Delivery Charge - ${{ number_format($order->delivery_charge ?? 0, 2) }}
Grand Total - ${{ number_format($order->grand_total ?? 0, 2) }}
@if ($order->is_invoice_created)

Order Information
Order Date {{ $order->created_at->format('Y-m-d H:i:s A') }}
Order Status {{ $order->status }}
Account Information
Customer Name {{ $customer->name . ' ' . $order->lastname }}
Email {{ $order->email }}

Billing Address
Name {{ $order->address?->name }}
Email {{ $order->address?->email }}
Contact {{ $order->address?->phone }}
City {{ $order->address?->city }}
State {{ $order->address?->state }}
Country Canada
Pin Code {{ $order->address?->pincode }}
Address {{ $order->address?->address }}
Comments {{ $order->note }}
Shipping Address
Name {{ $order->address?->name }}
Email {{ $order->address?->email }}
Contact {{ $order->address?->phone }}
City {{ $order->address?->city }}
State {{ $order->address?->state }}
Country Canada
Pin Code {{ $order->address?->pincode }}
Address {{ $order->address?->address }}
Comments {{ $order->note }}

Payment Information
Payment Method {{ $order->shipping_method }}
Currency USD
Payment Order Id {{ $order->payment_id }}
Shipping Information
Shipping Method {{ $order->delivery_type }}
Shipping Price $0.00

{{-- --}} @foreach ($order->items as $key => $item) @endforeach
Sl Product Name SKU Quantity PriceTax Percent Tax AmountGrand Total
{{ $key + 1 }} {{ $item->name }} {{ $item->sku }} {{ $item->quantity }} ${{ number_format($item->price ?? 0, 2) }} ${{ number_format($item->total_amount ?? 0, 2) }}
Subtotal - ${{ number_format($order->total_amount ?? 0, 2) }}
Tax - ${{ number_format($order->tax_total ?? 0, 2) }}
Discount - ${{ number_format($order->discount_amount ?? 0, 2) }}
Delivery Charge - ${{ number_format($order->delivery_charge ?? 0, 2) }}
Grand Total - ${{ number_format($order->grand_total ?? 0, 2) }}
@else @endif
@if ($order->is_shipped)

Order Information
Order Date {{ $order->created_at->format('Y-m-d H:i:s A') }}
Order Status {{ $order->status }}
Shipment Date {{ date('d-m-Y', strtotime($order->shipped_date)) }}
Shipment Name {{ $order->shipment_name }}
Shipment ID {{ $order->shipment_id }}
Tracking ID {{ $order->tracking_id }}
Account Information
Customer Name {{ $order->first_name . ' ' . $order->last_name }}
Email {{ $order->email }}

Billing Address
Name {{ $order->address?->first_name }}
Email {{ $order->address?->email }}
Contact {{ $order->address?->phone }}
City {{ $order->address?->city }}
State {{ $order->address?->state }}
Country Canada
Pin Code {{ $order->address?->pincode }}
Address {{ $order->address?->address }}
Comments {{ $order->note }}
Shipping Address
Name {{ $order->address?->first_name }}
Email {{ $order->address?->email }}
Contact {{ $order->address?->phone }}
City {{ $order->address?->city }}
State {{ $order->address?->state }}
Country Canada
Pin Code {{ $order->address?->pincode }}
Address {{ $order->address?->address }}
Comments {{ $order->note }}

Payment Information
Payment Method {{ $order->shipping_method }}
Currency USD
Payment Order Id {{ $order->payment_id }}
Shipping Information
Shipping Method {{ $order->delivery_type }}
Shipping Price $0.00

{{-- --}} @foreach ($order->items as $key => $item) @endforeach
Sl Product Name SKU Quantity PriceTax Percent Tax AmountGrand Total
{{ $key + 1 }} {{ $item->name }} {{ $item->sku }} {{ $item->quantity }} ${{ number_format($item->price ?? 0, 2) }} ${{ number_format($item->total_amount ?? 0, 2) }}
Subtotal - $ {{ number_format($order->total_amount ?? 0, 2) }}
Tax - ${{ number_format($order->tax_total ?? 0, 2) }}
Discount - ${{ number_format($order->discount_amount ?? 0, 2) }}
Delivery Charge - ${{ number_format($order->delivery_charge ?? 0, 2) }}
Grand Total - ${{ number_format($order->grand_total ?? 0, 2) }}
@else @endif
@if ($order->is_refunded)

Order Information
Order Date {{ $order->created_at->format('Y-m-d H:i:s A') }}
Order Status {{ $order->status }}
Refunded Amount ${{ $order?->refund?->refund_amount }}
Account Information
Customer Name {{ $order->first_name . ' ' . $order->last_name }}
Email {{ $order->email }}

Billing Address
Name {{ $order->address?->first_name }}
Email {{ $order->address?->email }}
Contact {{ $order->address?->phone }}
City {{ $order->address?->city }}
State {{ $order->address?->state }}
Country Canada
Pin Code {{ $order->address?->pincode }}
Address {{ $order->address?->address }}
Comments {{ $order->note }}
Shipping Address
Name {{ $order->address?->first_name }}
Email {{ $order->address?->email }}
Contact {{ $order->address?->phone }}
City {{ $order->address?->city }}
State {{ $order->address?->state }}
Country Canada
Pin Code {{ $order->address?->pincode }}
Address {{ $order->address?->address }}
Comments {{ $order->note }}

Payment Information
Payment Method {{ $order->shipping_method }}
Currency USD
Payment Order Id {{ $order->payment_id }}
Shipping Information
Shipping Method {{ $order->delivery_type }}
Shipping Price $0.00

{{-- --}} @foreach ($order->items as $key => $item) @endforeach
Sl Product Name SKU Quantity PriceTax Percent Tax AmountGrand Total
{{ $key + 1 }} {{ $item->name }} {{ $item->sku }} {{ $item->quantity }} ${{ number_format($item->price ?? 0, 2) }} ${{ number_format($item->total_amount ?? 0, 2) }}
Subtotal - $ {{ number_format($order->total_amount ?? 0, 2) }}
Tax - ${{ number_format($order->tax_total ?? 0, 2) }}
Discount - ${{ number_format($order->discount_amount ?? 0, 2) }}
Delivery Charge - ${{ number_format($order->delivery_charge ?? 0, 2) }}
Grand Total - ${{ number_format($order->grand_total ?? 0, 2) }}
@else @endif