{!! '<?xml version="1.0" encoding="UTF-8"?>' !!}

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

    <url>
        <loc>https://sysnavi.com/</loc>
        <priority>1.0</priority>
    </url>

    <url>
        <loc>https://sysnavi.com/blog</loc>
        <priority>0.8</priority>
    </url>

    <url>
        <loc>https://sysnavi.com/production_management</loc>
        <priority>0.8</priority>
    </url>

    @foreach($posts as $post)
    <url>
        <loc>{{ url('/blog/' . $post->id) }}</loc>
        <lastmod>{{ $post->updated_at->toAtomString() }}</lastmod>
    </url>
    @endforeach

</urlset>