@extends('layouts.admin') @section('heading', 'Order #' . $order->id) @section('subheading', $order->customer->name ?? '—') @section('actions') ← Back to orders @endsection @section('content') @if (session('status'))
Garments in this order
@foreach($order->items as $item){{ $item->garmentType->name }}{{ $item->garmentType->name_ta ? ' / '.$item->garmentType->name_ta : '' }} × {{ $item->qty }}
₹{{ number_format($item->total_amount, 0) }}
Addons: {{ $item->addons->pluck('name')->join(', ') }} (+₹{{ number_format($item->addon_total, 0) }})
@endif @if($item->notes)Note: {{ $item->notes }}
@endifPayment history
| Date | Mode | Collected by | Notes | Amount |
|---|---|---|---|---|
| {{ $payment->created_at->format('d M, h:i A') }} | {{ $payment->mode }} | {{ $payment->collector->name ?? '—' }} | {{ $payment->notes ?? '—' }} | ₹{{ number_format($payment->amount, 0) }} |
| No payments recorded yet. | ||||
Summary
Collect payment
✓ Fully paid