@extends('layouts.public') @section('titre', 'Annonces — InnerHayti') @section('content')
{{-- Recherche --}} {{-- Onglets catégories --}} {{-- En-tête : nombre de résultats + tris --}}

{{ $annonces->total() }} annonce{{ $annonces->total() > 1 ? 's' : '' }}

{{-- Résultats --}} @if($annonces->isEmpty())

Aucune annonce ne correspond à ta recherche.

@else
@foreach($annonces as $a) @include('public.partials.carte-annonce', ['a' => $a]) @endforeach
{{-- Pagination --}} @if($annonces->hasPages()) @endif @endif
@endsection