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

@if ($rooms->isNotEmpty())
@foreach ($rooms as $room)
{!! Theme::partial('rooms.item', compact('room', 'startDate', 'endDate', 'nights', 'adults')) !!}
@endforeach
@if ($rooms instanceof \Illuminate\Contracts\Pagination\LengthAwarePaginator)
{!! $rooms->withQueryString()->links(Theme::getThemeNamespace('partials.pagination')) !!}
@endif @endif