@extends('admin.layouts.app') @section('title', 'Order ' . $order->order_number) @section('content')
| Product | SKU | Price | Quantity | Subtotal |
|---|---|---|---|---|
|
{{ $item->product_name }}
@if($item->includes_installation)
+ Installation
@endif
|
{{ $item->product_sku }} | KSh {{ number_format($item->price, 2) }} | {{ $item->quantity }} |
KSh {{ number_format($item->subtotal, 2) }}
@if($item->includes_installation)
+ KSh {{ number_format($item->installation_price * $item->quantity, 2) }} installation
@endif
|
| Method | Transaction ID | Amount | Status | Date |
|---|---|---|---|---|
| {{ strtoupper($payment->payment_method) }} | {{ $payment->transaction_id ?? '-' }} | KSh {{ number_format($payment->amount, 2) }} | {{ $payment->status_badge['label'] }} | {{ $payment->created_at->format('M d, Y h:i A') }} |