My Laundry Kobay

Complete Order Management System

Order Invoice #{{ $order->orders_id }}
Order Details
Order ID:
#{{ $order->orders_id }}
Order Date:
{{ \Carbon\Carbon::parse($order->created_at)->format('d M Y, H:i') }}
Status:
{{ ucfirst($order->status ?? 'Processing') }}
Total Weight:
{{ $order->calculated_weight }} items
Customer Information
Name:
{{ $order->username ?? 'N/A' }}
Phone:
{{ $order->phone ?? 'N/A' }}
Address:
{{ $order->contry ?? 'N/A' }}
Order Items
@foreach ($order->items as $index => $item) @endforeach
# Product Name Quantity Unit Price Total Price Status
{{ $index + 1 }}
{{ $item->product->name ?? 'Product Not Found' }}
@if ($item->product->sku ?? false) SKU: {{ $item->product->sku }} @endif
{{ $item->qty }} Rp {{ number_format($item->final_price, 0, ',', '.') }} Rp {{ number_format($item->item_total, 0, ',', '.') }} Ready

Rincian Pembayaran

@foreach ($order->items as $item)
{{ $item->title }} ({{ $item->qty }} KG)
Rp {{ number_format($item->item_total, 0, ',', '.') }}
@endforeach
Subtotal:
Rp {{ number_format($order->calculated_subtotal, 0, ',', '.') }}
Total Berat:
{{ number_format($order->weight ?? $order->calculated_weight, 0, ',', '.') }} KG
TOTAL PEMBAYARAN:
Rp {{ number_format($order->grand_total ?? $order->calculated_subtotal, 0, ',', '.') }}
@if ($order->notes ?? false)
Order Notes
{{ $order->notes }}
@endif

Thank you for your business!

Generated on {{ \Carbon\Carbon::now()->format('d M Y, H:i:s') }}