| # | Unit Serial # | Costume Item | Return Condition | Damage Fee (₹) |
|---|---|---|---|---|
| {{ $idx + 1 }} | {{ $item->rentalUnit->unit_code ?? 'UNIT-#' . $item->rental_unit_id }} |
{{ $item->rentalUnit->product->name ?? 'Costume Unit' }}
@if($item->notes)
{{ $item->notes }}
@endif
|
{{ $item->condition_on_return ?? 'Good' }} | @if($item->damage_charge > 0) ₹{{ number_format($item->damage_charge, 2) }} @else ₹0.00 @endif |
| No individual unit inspection logs recorded. | ||||
| Security Deposit Held in Trust: | ₹{{ number_format($rentalReturn->security_deposit_held, 2) }} |
| Less: Late Return Fee: | - ₹{{ number_format($rentalReturn->late_fee_total, 2) }} |
| Less: Damage / Alteration Fee: | - ₹{{ number_format($rentalReturn->damage_fee_total, 2) }} |
| Less: Special Dry Cleaning Fee: | - ₹{{ number_format($rentalReturn->cleaning_fee_total, 2) }} |
| Total Deductions: | - ₹{{ number_format($rentalReturn->security_deposit_deducted, 2) }} |
| Net Refund to Customer: | ₹{{ number_format($rentalReturn->net_settlement_amount, 2) }} |