@extends('layouts.app') @section('title', 'Order Confirmation') @section('content')

Order Placed Successfully!

Order #{{ $order->order_number }}

Order Summary

@foreach($order->items as $item) @endforeach @if($order->installation_cost > 0) @endif
Item Qty Price
{{ $item->product_name }} {{ $item->quantity }} KSh {{ number_format($item->subtotal, 2) }}
Installation KSh {{ number_format($order->installation_cost, 2) }}
Total KSh {{ number_format($order->total, 2) }}

Click below to send your order to our WhatsApp for faster processing:

Send Order via WhatsApp

What's Next?

  • Click the WhatsApp button above to confirm your order with us
  • Our team will contact you to confirm delivery details
  • Track your order status in your dashboard
@endsection