ECA NETWORKS

Networking Equipment Supplier — Nairobi

✓ Order Confirmed

Hi {{ $order->shipping_name }},

Thank you for your order! We have received it and it is now being processed. You will receive updates as your order progresses.

{{-- Order Summary --}}

Order Details

Order Number {{ $order->order_number }}
Order Date {{ $order->created_at->format('d M Y, h:i A') }}
Payment Method {{ ucwords(str_replace('_', ' ', $order->payment_method)) }}
Status {{ ucfirst($order->status) }}
{{-- Items --}}

Items Ordered

@foreach($order->orderItems as $item) @endforeach
Product Qty Price Subtotal
{{ $item->product_name }} {{ $item->quantity }} KSh {{ number_format($item->price, 2) }} KSh {{ number_format($item->subtotal, 2) }}
Subtotal KSh {{ number_format($order->subtotal, 2) }}
Shipping {{ $order->shipping_fee > 0 ? 'KSh '.number_format($order->shipping_fee,2) : 'FREE' }}
Total KSh {{ number_format($order->total, 2) }}
{{-- Shipping Address --}}

Shipping Address

{{ $order->shipping_name }}
{{ $order->shipping_address }}
{{ $order->shipping_city }}, {{ $order->shipping_country }}
Phone: {{ $order->shipping_phone }}

@if($order->payment_method === 'mpesa')
📱 M-Pesa Payment Instructions

Please complete your payment via M-Pesa to finalize your order. @if($order->mpesa_code) Your M-Pesa confirmation code: {{ $order->mpesa_code }} @else Send KSh {{ number_format($order->total, 2) }} to our M-Pesa number and use order {{ $order->order_number }} as the reference. @endif

@endif View Order Status