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'] }}
Bill To:
{{ $order->customer_name }}
{{ $order->customer_email }}
{{ $order->customer_phone }}
@if($order->shipping_address) {{ $order->shipping_address }}
{{ $order->city }}, {{ $order->county }} @endif
@foreach($order->items as $item) @endforeach
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) }}
@if($order->installation_cost > 0) @endif @if($order->shipping_cost > 0) @endif @if($order->discount > 0) @endif
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) }}