@if(!$featuredProperties->isEmpty()) @endif
@if(!$international)
{{ Form::select('locations[]', $locations, request()->input('locations'), ['class' => 'select2', 'multiple', 'data-placeholder' => translate('quartier')]) }}
@endif
{{ Form::select('property_types[]', $types, request()->input('property_types'), ['class' => 'select2', 'multiple', 'data-placeholder' => translate('type')]) }}
{{ Form::select('rooms[]', $rooms, request()->input('rooms'), ['class' => 'select2', 'multiple', 'data-placeholder' => ucfirst(translate('chambres'))]) }}
{{ Form::select('area', $areas, request()->input('area'), ['class' => 'select2']) }}
{{ Form::select('price', $prices, request()->input('price'), ['class' => 'select2']) }}
{{ Form::text('ref', request()->input('ref'), ['placeholder' => 'Référence']) }}
{{ Form::hidden('sorting', request()->input('sorting')) }}
@if(!$international) {{ Form::select('type', \App\Models\Property::types(), $searchTypeLabel, ['class' => 'custom-select']) }} @endif {{ Form::select('select_sorting', $sorts, null, ['class' => 'custom-select']) }}
@if(!$results->isEmpty()) @foreach($results as $r) @if(!$r->checkOffMarket())
@php $photo = $r->photo @endphp @if($photo) @endif
{{ $r->getAttr('property_title') }}

{!! $r->frontPrice !!}  -  {{ translate('ref') }} : {{ $r->ref }}

@include('partials.property-icons', ['property' => $r])

{{ \Illuminate\Support\Str::limit($r->frontComments, 150) }}

@endif @endforeach @else
{{ translate('aucun_resultats_recherche') }}
@endif
@include('partials.pagination', ['pagination' => $results->appends(request()->all())->links()]) @push('scripts') @endpush