Customer Details
|
Order No. |
#{{ $order->id }} |
Delivery Location
|
{{ $order?->deliveryCity?->city ?? 'Doaba' }} |
Delivery Time
|
{{ date('d-m-Y', strtotime($order->date)) . ' ' . $order->time }}
|
Name
|
{{ $order->name . ' ' . $order->lastname }}
|
Email
|
{{ $order->email }} |
Tel
|
{{ $order->phone }} |
Address |
{{ $order->address?->address }}
|
City |
{{ $order->address?->city }}
|
Payment Mode
|
{{ $order->shipping_method }} |
Order Creation Time
|
{{ $order->created_at->format('d-m-Y h:i A') }}
|
Comments
|
{{ $order->note }}
|
|
|
|
Order Details |
@if (!is_null($order->items))
Item Name
|
Qty |
Price |
Total |
@foreach ($order->items as $item)
{{ $item->name }}
|
{{ $item->quantity }}
|
${{ $item->price }}
|
${{ number_format($item->total_amount ?? 0, 2) }}
|
@endforeach
@if (!is_null($order->kidscakeitems))
@foreach ($order->kidscakeitems as $item)
Custom Kids Cake ({{ $item->cake_design_name }}) |
1 |
${{ $item->total_amount }}
|
${{ number_format($item->total_amount ?? 0, 2) }}
|
@endforeach
@endif
@if (!is_null($order->wedcakeitems))
@foreach ($order->wedCakeitems as $item)
Custom Wedding Cake ({{ $item->cake_design_name }})
|
1 |
${{ $item->total_amount }}
|
${{ number_format($item->total_amount ?? 0, 2) }}
|
@endforeach
@endif
@if (!is_null($order->customCartitems))
@foreach ($order->customCartitems as $item)
design Custom Cake ({{ $item->cake_design_name }}) |
1 |
${{ $item->total_amount }}
|
${{ number_format($item->total_amount ?? 0, 2) }}
|
@endforeach
@endif
@endif
|
Sub Total : |
${{ number_format($order->total_amount ?? 0, 2) }}
|
Taxable Product SubTotal : |
${{ number_format($order->tax_total ?? 0, 2) }}
|
Coupon Discount : |
${{ number_format($order->discount_amount ?? 0, 2) }} |
Shipping: |
${{ number_format($order->delivery_charge ?? 0, 2) }} |
Grand Total : |
${{ number_format($order->grand_total ?? 0, 2) }}
|
|
|