@extends('layouts.app') @section('content') @section('title', 'Rooms')

Rooms

Explore our comfortable and cozy rooms designed for your comfort and relaxation.

Our Accommodations

Five spacious self-service rooms - clean, comfortable, and designed for independence

@forelse($rooms as $room)
@if($room->images && count($room->images) > 0) {{ $room->name }} @else {{ $room->name }} @endif

{{ $room->name }}

{{ $room->description }}

@if($room->amenities && count($room->amenities) > 0)
@php $amenityIcons = [ 'breakfast' => 'fa-utensils', 'lunch' => 'fa-utensils', 'dinner' => 'fa-utensils', 'wifi' => 'fa-wifi', 'ict' => 'fa-laptop', 'parking' => 'fa-car', 'air_conditioning' => 'fa-snowflake', 'tv' => 'fa-tv', 'balcony' => 'fa-home', 'kitchen' => 'fa-kitchen-set', 'bathroom' => 'fa-bath', 'laundry' => 'fa-shirt', 'room_service' => 'fa-bell', 'security' => 'fa-shield', ]; $amenityLabels = [ 'breakfast' => 'Breakfast', 'lunch' => 'Lunch', 'dinner' => 'Dinner', 'wifi' => 'WiFi', 'ict' => 'ICT', 'parking' => 'Parking', 'air_conditioning' => 'AC', 'tv' => 'TV', 'balcony' => 'Balcony', 'kitchen' => 'Kitchen', 'bathroom' => 'Bathroom', 'laundry' => 'Laundry', 'room_service' => 'Room Service', 'security' => 'Security', ]; @endphp @foreach(array_slice($room->amenities, 0, 6) as $amenity) {{ $amenityLabels[$amenity] ?? ucfirst(str_replace('_', ' ', $amenity)) }} @endforeach @if(count($room->amenities) > 6) +{{ count($room->amenities) - 6 }} more @endif
@endif
${{ number_format($room->price, 2) }}/night
@empty

No rooms available at the moment. Please check back later.

@endforelse
@endsection