@php Theme::set('pageTitle', $category->name); [$startDate, $endDate, $adults, $nights, $children, $room] = HotelHelper::getRoomBookingParams(); @endphp

{{ __(':count rooms available', ['count' => $rooms->total()]) }}

@if ($rooms->isNotEmpty())
@foreach ($rooms as $room)
@if ($images = $room->images) {{ $room->name }} @endif

{{ $room->name }}

@if ($description = $room->description)

{!! BaseHelper::clean($description) !!}

@endif @if ($room->amenities->isNotEmpty())
    @foreach ($room->amenities->take(6) as $amenity) @if ($image = $amenity->getMetaData('icon_image', true) )
  • {{ $amenity->name }}
  • @endif @endforeach
@endif
@endforeach
@if ($rooms instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator)
{!! $rooms->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) !!}
@endif @endif