Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
  2. @if (isset($data['is_index']) && $data['is_index'] == true )
  3. <sitemapindex xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/siteindex.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  4. @for ($i = 0; $i < $data['data']; $i++) <sitemap>
  5. <loc>{{ route('site.sitemap', ['id' => $i+1 ]) }}</loc>
  6. </sitemap>
  7. @endfor
  8. </sitemapindex>
  9. @else
  10. <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  11. @foreach ($data as $item)
  12. <url>
  13. <loc>{{ route('site.search', ['query' => $item->slug]) }}</loc>
  14. </url>
  15. @endforeach
  16. </urlset>
  17. @endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement