@if ($hotel->cover_image_path) @endif

{{ $hotel->name }}

{{ implode(' · ', array_filter([$hotel->brand?->name, $hotel->country?->name, $hotel->room_count ? $hotel->room_count.' quartos' : null])) }}

@if ($translation?->short_description)

{{ $translation->short_description }}

@endif @if ($translation?->usp)

{{ $translation->usp }}

@endif

Dados rápidos

Morada{{ $hotel->address ?: '—' }} Nº de quartos{{ $hotel->room_count ?: '—' }}
Distância ao aeroporto{{ $hotel->distance_airport_km ? $hotel->distance_airport_km.' km' : '—' }} Distância ao centro{{ $hotel->distance_center_km ? $hotel->distance_center_km.' km' : '—' }}
Check-in{{ $hotel->checkin_time ?: '—' }} Check-out{{ $hotel->checkout_time ?: '—' }}

@if ($hotel->has_spa)Spa@endif @if ($hotel->has_pool)Piscina@endif @if ($hotel->has_parking)Parking@endif @if ($hotel->has_mice)MICE / Eventos@endif

@if ($translation?->description)

Sobre o hotel

{!! nl2br(e($translation->description)) !!}

@endif @if ($hotel->facilities->isNotEmpty())

Facilities

@foreach ($hotel->facilities as $f){{ $f->name }}@endforeach

@endif @if (! empty($hotel->room_types))

Tipologias de quarto

@foreach ($hotel->room_types as $rt) @endforeach
TipologiaNº quartosDescrição
{{ $rt['name'] ?? '' }}{{ $rt['count'] ?? '—' }}{{ $rt['description'] ?? '' }}
@endif @if (! empty($hotel->restaurants) || ! empty($hotel->bars))

Restaurantes & Bares

@foreach (($hotel->restaurants ?? []) as $r) @endforeach @foreach (($hotel->bars ?? []) as $b) @endforeach
{{ $r['name'] ?? '' }}{{ $r['description'] ?? '' }}
{{ $b['name'] ?? '' }}{{ $b['description'] ?? '' }}
@endif @if (! empty($hotel->contacts))

Contactos

@foreach ($hotel->contacts as $c) @endforeach
{{ $c['label'] ?? '' }}{{ $c['value'] ?? '' }}
@endif