Generated on {{ now()->format('d M Y, H:i') }}
| Room No. | Type | Floor | Rent (₹) | Amenities | Status |
|---|---|---|---|---|---|
| {{ $room->room_number }} | {{ $room->roomType->name }} | {{ $room->floor_number ?? 'Ground' }} | ₹{{ number_format($room->rent, 2) }} | {{ $room->amenities->pluck('name')->implode(', ') }} | {{ $room->status ? 'Available' : 'Maintenance' }} |