<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <!-- 首页 -->
    <url>
        <loc>{{ secure_url('/') }}</loc>
        <lastmod>{{ now()->toAtomString() }}</lastmod>
        <changefreq>daily</changefreq>
        <priority>1.0</priority>
    </url>

    <!-- 产品列表 -->
    @foreach ($dist_products as $product)
        <url>
            <loc>{{ str_replace('http://', 'https://', route('products.detail', $product->id)) }}</loc>
            <lastmod>{{ $product->updated_at->toAtomString() }}</lastmod>
            <changefreq>weekly</changefreq>
            <priority>0.8</priority>
        </url>
    @endforeach


    <!-- 文章列表 -->
    @foreach ($dist_pages as $page)
        <url>
            <loc>{{ str_replace('http://', 'https://', $page->slug ? route('page.detail', $page->slug) : route('page.detail', $page->id)) }}</loc>
            <lastmod>{{ $page->updated_at->toAtomString() }}</lastmod>
            <changefreq>weekly</changefreq>
            <priority>0.8</priority>
        </url>
    @endforeach

</urlset>