<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    @foreach ($makaleler as $makale)
        <url>
            <loc>{{ url('makale/'.\Illuminate\Support\Str::slug($makale->baslik).'-'.$makale->id) }}</loc>
            <lastmod>{{date('Y-m-d',strtotime($makale->tarih))}}</lastmod>
            <changefreq>weekly</changefreq>
            <priority>0.7</priority>
        </url>
    @endforeach
</urlset>
