A simple Google News Sitemap generator for Laravel.
cviebrock/laravel-news-sitemap is a Laravel package for a simple google news sitemap generator for laravel..
It currently has 5 GitHub stars and 4.910 downloads on Packagist (latest version 0.9.1).
Install it with composer require cviebrock/laravel-news-sitemap.
Discover more Laravel packages by cviebrock
or browse all Laravel packages to compare alternatives.
Last updated
A Google News sitemap generator for Laravel 4.
Add the package to your composer.json file:
'cviebrock/laravel-news-sitemap' => 'dev-master'
Add the service provider to app/config/app.php
'providers' => array(
...
'Cviebrock\LaravelNewsSitemap\ServiceProvider',
);
Publish the configuration file:
php artisan config:publish cviebrock/laravel-news-sitemap
// create a new sitemap instance
$sitemap = \App::make('Cviebrock\LaravelNewsSitemap\NewsSitemap');
// if it's not cached, then populate with entries
if (!$sitemap->isCached()) {
foreach (Posts::all() as $post) {
$extras = [];
$images = [];
foreach ($post->images as $image) {
$images[] = [
'loc' => $image->url,
'caption' => $image->caption
];
}
$extras['keywords'] = $post->topics->lists('name');
$this->sitemap->addEntry($post->url, $post->title, $post->published_at, $extras, $images);
}
}
// returns an XML response
return $sitemap->render();
Please use Github for bugs, comments, suggestions.
master branch.laravel-news-sitemap was written by Colin Viebrock and released under the MIT License. See the LICENSE file for details.
Copyright 2014 Colin Viebrock