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