@foreach ($room->media->all() as $index => $media)
{{
@endforeach
{{-- Main content --}}

{{ ucfirst($room->category->translations->first()->name) }}

{{ $room->floor == 1 ? '1st' : ($room->floor == 2 ? '2nd' : ($room->floor == 3 ? '3rd' : $room->floor . 'th')) }} Floor
Room {{ $room->number }}
@if ($room->translations->first()->description)

{{ $room->translations->first()->description }}

@endif @if ($room->translations->first()->view)

{{ $room->translations->first()->view }}

@endif
{{-- Specifications --}}

Room Specifications

{{ $room->bed_count == 1 ? $room->bed_count . ' bed' : $room->bed_count . ' beds' }}

{{ $room->capacity == 1 ? $room->capacity . ' guest' : $room->capacity . ' guests' }}

{{ $room->size . ' m²' }}

{{-- Amenities --}}

Amenities & Services

@foreach ($room->amenities as $amenity)

{{ $amenity->translations->first()->name }}

@endforeach
{{-- Booking Sidebar --}}
${{ $room->price_per_night }} per night

Taxes and fees included

maybe a cancellation message?

@push('js') @endpush