Conference setup reminder
Keep capacity, seating type, projector/sound setup, and booking terms clear in description for easier customer booking.
@if($room->images && count($room->images) > 0)
Current Images:
@foreach($room->images as $index => $image)
@endforeach
@endif
@error('images')
{{ $message }}
@enderror
@error('images.*')
{{ $message }}
@enderror
You can upload multiple new images as needed.
@php
$amenities = [
'breakfast' => ['icon' => 'fa-utensils', 'label' => 'Breakfast'],
'lunch' => ['icon' => 'fa-utensils', 'label' => 'Lunch'],
'dinner' => ['icon' => 'fa-utensils', 'label' => 'Dinner'],
'wifi' => ['icon' => 'fa-wifi', 'label' => 'Free WiFi'],
'ict' => ['icon' => 'fa-laptop', 'label' => 'ICT Facilities'],
'parking' => ['icon' => 'fa-car', 'label' => 'Free Parking'],
'air_conditioning' => ['icon' => 'fa-snowflake', 'label' => 'Air Conditioning'],
'tv' => ['icon' => 'fa-tv', 'label' => 'TV'],
'balcony' => ['icon' => 'fa-home', 'label' => 'Balcony'],
'kitchen' => ['icon' => 'fa-kitchen-set', 'label' => 'Kitchen'],
'bathroom' => ['icon' => 'fa-bath', 'label' => 'Private Bathroom'],
'laundry' => ['icon' => 'fa-shirt', 'label' => 'Laundry Service'],
'room_service' => ['icon' => 'fa-bell', 'label' => 'Room Service'],
'security' => ['icon' => 'fa-shield', 'label' => '24/7 Security'],
];
$roomAmenities = $room->amenities ?? [];
@endphp
@foreach($amenities as $key => $amenity)
@endforeach
@error('amenities')
{{ $message }}
@enderror
Select amenities included with this room to attract customers.
Current Status:
{{ ucfirst($room->status) }}
@if($room->status === 'approved' && !auth()->user()->isSuperAdmin())
Editing an approved room will require re-approval.
@endif