INVOICE#{{ $order->order_number }} Date: {{ $order->created_at->format('M d, Y') }}
Payment Status:
{{ ucfirst($order->payment_status) }}
|
{{ $company['name'] }}
{{ $company['address'] }}
{{ $company['phone'] }}
{{ $company['email'] }}
{{ $company['website'] }}
|
| Item | Qty | Price | Total |
|---|---|---|---|
|
{{ $item->product_name }}
@if($item->includes_installation)
+ Installation included @endif |
{{ $item->quantity }} | {{ number_format($item->price, 2) }} | {{ number_format($item->total, 2) }} |
| Subtotal: | {{ number_format($order->subtotal, 2) }} |
| Installation: | {{ number_format($order->installation_cost, 2) }} |
| Shipping: | {{ number_format($order->shipping_cost, 2) }} |
| Discount: | -{{ number_format($order->discount, 2) }} |
| Total (KSh): | {{ number_format($order->total, 2) }} |