@if (!empty($_GET['client_rating']))
@php
$client_rating = $_GET['client_rating'];
@endphp
@endif
@if (!empty($_GET['includes']))
@php
$includes_filter = explode(',', $_GET['includes']);
@endphp
@endif
@if (!empty($_GET['tags']))
@php
$tag_filter = explode(',', $_GET['tags']);
@endphp
@endif
@if (!empty($_GET['price_from']))
@php
$price_from = $_GET['price_from'];
$price_to = $_GET['price_to'];
@endphp
@endif
There are {{ $hotels->count() }} Packages in this page
Search Filter
@foreach ($hotels as $item)
@include('website.layouts.components.package_h')
@endforeach
{{ $hotels->appends(request()->input())->links() }}