Shiny Carpet

Premium Laundry and Ironing Service

Invoice Information

Invoice Number: #{{ $order->id }}

Date: {{ $order->created_at->format('Y-m-d H:i') }}

Customer Information

Phone Number: {{ $order->phone }}

Order Status: {{ $order->status ?? 'In Progress' }}

Service Details
@foreach($order->items as $item) @endforeach
Product / Service Quantity Unit Price Total Price
{{ $item->product->name }} {{ $item->quantity }} {{ number_format($item->price / $item->quantity, 2) }} EGP {{ number_format($item->price, 2) }} EGP
Invoice Summary
Subtotal: {{ number_format($order->subtotal, 2) }} EGP
Tax Amount ({{ $order->vat_percentage }}%): {{ number_format($order->vat_amount, 2) }} EGP
Total Amount: {{ number_format($order->total, 2) }} EGP
@if($order->note)

Special Notes:

{{ $order->note }}

@endif