@extends("theme.$theme.layout")
@section('styles')
@endsection
@section('content')
{{$hotel->name}}
@php
$detail=true;
@endphp
@include('hotelbeds.item-listado', ["imageTypes" => $imageTypes])
Cuartos
TIPO DE HABITACIÓN
CAPACIDAD
PRECIO POR NOCHE
OPCIONES
SELECCIONAR
@forelse ($hotelRooms as $room)
@if (isset($room['room']) && !empty($room['code']))
@include('hotelbeds.item-hotel-room')
@endif
@empty
{{__('Sin habitaciones disponibles')}}
@endforelse
@endsection
@section('scripts')
@endsection