Dear Admin!,

A new show order has been created, following are the details:

Customer Information:

Name: {{ $data->name }}
Email: {{ $data->email or 'N/A' }}
Phone: {{ $data->phone or 'N/A' }}
Address Line 1: {{ $data->address1 or 'N/A' }}
Address Line 2: {{ $data->address2 or 'N/A' }}
City: {{ $data->city or 'N/A' }}
State: {{ $data->state or 'N/A' }}
Zip / Post Code: {{ $data->zip or 'N/A' }}
Country: {{ $data->country or 'N/A' }}
Notes: {{ $data->notes or 'N/A' }}

Order Information

@foreach($order->items as $item) @endforeach
Name / SKU Price QTY Total
{{ $item['name'] . '
' . $item['sku'] . '' }}
{{ '
$'.$item['price_org'].'
$'.$item['price'] }}
{{ $item['qty'] }} {{ '
$'. ( $item['price_org'] * $item['qty'] ) .'
$'. ( $item['price'] * $item['qty'] ) }}

Sub Total: {{ $data->sub_total }}
Discount: {{ $data->discount }}
Grand Total: {{ $data->grand_total }}


Thank You,
{{ app_name() }}