Track and manage reservations, dispatches, returns, and security deposits.
| Order Details | Customer | Rental Dates | Allocated Pieces | Financials | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $order->order_number }} {{ $order->order_date->format('d M Y') }} | {{ $order->customer->name }} {{ $order->customer->phone }} | {{ $order->rental_start_date->format('d M') }} → {{ $order->rental_end_date->format('d M Y') }} {{ $order->duration_days }} day(s) duration |
@foreach($order->allocations as $alloc)
{{ $alloc->rentalUnit->unit_code }}
@endforeach
|
₹{{ number_format($order->total_rental_amount, 2) }} Deposit: ₹{{ number_format($order->security_deposit_received, 2) }} Balance: ₹{{ number_format($order->balance_due, 2) }} | {{ $order->status }} | @if($order->status === 'booked') Dispatch @elseif($order->status === 'dispatched') Return @endif |
| No rental bookings found matching your search. | ||||||