GrafiteInc/CMS

View on GitHub
src/Views/site-map.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">

    @foreach ($items as $item)
   <url>
      <loc>{{ $item['url'] }}</loc>
      <lastmod>{{ $item['updated_at'] }}</lastmod>
      <changefreq>monthly</changefreq>
      <priority>0.8</priority>
   </url>
   @endforeach

</urlset>