?
Current File : /home/sanghavirealty/public_html/resourcesazwer/views/xml/page-sitemap.blade.php
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    @foreach ($items as $item)
    <url>
        <loc>{{ url('pages/'.$item->slug) }}</loc>
        <lastmod>{{ $item->modifydate ? \Carbon\Carbon::parse($item->modifydate)->format('Y-m-d') : now()->format('Y-m-d') }}</lastmod>
        <changefreq>monthly</changefreq>
        <priority>0.8</priority>
    </url>
    @endforeach
</urlset>