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