googlenews.blade.php
| 756 B | Satir:
0
| php
Geri
<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9"> @foreach ($haberler as $haber) <url> <loc>{{ url('haber/'.$haber->slug.'-'.$haber->id) }}</loc> <news:news> <news:publication> <news:name>{{ config('ayarlar.newsname') }}</news:name> <news:language>tr</news:language> </news:publication> <news:publication_date>{{date('Y-m-d',strtotime($haber->tarih))}}</news:publication_date> <news:title>{{ $haber->baslik }}</news:title> </news:news> </url> @endforeach </urlset>
Kaydet
Ctrl+S ile kaydet