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