<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
@foreach ($cases as $case)
<url>
<loc>{{ URL::to('/') }}/cases/{{ $case->translation->slug }}</loc>
<lastmod>{{ $case->updated_at }}</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
</url>
@endforeach
</urlset>