8Stores
New order notification for admin.

{{ $order->order_number }}

Customer: {{ $order->customer->name }} ({{ $order->customer->email }})

Status {{ $order->statusLabel() }}
Subtotal {{ \App\Models\SiteSetting::formatPrice($order->subtotal) }}
Shipping {{ \App\Models\SiteSetting::formatPrice($order->shipping_amount) }}
Total {{ \App\Models\SiteSetting::formatPrice($order->total) }}

Items

@foreach ($order->items as $item)
{{ $item->product_name }} @if ($item->variant_label)
{{ $item->variant_label }}
@endif
Qty {{ $item->quantity }} x {{ \App\Models\SiteSetting::formatPrice($item->unit_price) }}
@endforeach
Open admin panel to review the payment method and approve the order.