<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
        <loc>{{ url('/') }}</loc>
        <lastmod>{{ now()->toDateString() }}</lastmod>
    </url>

    @foreach($annonces as $annonce)
        <url>
            <loc>{{ route('annonce.show', $annonce->slug) }}</loc>
        </url>
    @endforeach
</urlset>
