RSS builder for Laravel 5

1.1 2015-07-08 00:03 UTC

This package is not auto-updated.

Last update: 2024-04-13 15:28:50 UTC


README

RSS builder for Laravel 5

Installation

Add mayconbordin/rss-l5 to composer.json.

"mayconbordin/rss-l5": "~1.1"

Run composer update to pull down the latest version of RSS.

Now open up app/config/app.php and add the service provider to your providers array.

'providers' => array(
    'Thujohn\Rss\RssServiceProvider',
)

Now add the alias.

'aliases' => array(
    'Rss' => 'Thujohn\Rss\RssFacade',
)

Usage

Returns the feed

Route::get('/', function()
{
	$feed = Rss::feed('2.0', 'UTF-8');
	$feed->channel([
	    'title'       => "Channel's title",
	    'description' => "Channel's description",
	    'link'        => "http://www.test.com/"
    ]);
    
	for ($i=1; $i<=5; $i++) {
		$feed->item([
		    'title' => 'Item '.$i,
		    'description|cdata' => 'Description '.$i,
		    'link' => 'http://www.test.com/article-'.$i
	    ]);
	}

	return response($feed, 200)->header('Content-Type', 'text/xml');
});

Save the feed

Route::get('/', function()
{
	$feed = Rss::feed('2.0', 'UTF-8');
	$feed->channel([
	    'title'       => "Channel's title",
	    'description' => "Channel's description",
	    'link'        => "http://www.test.com/"
    ]);
    
	for ($i=1; $i<=5; $i++) {
		$feed->item([
		    'title' => 'Item '.$i,
		    'description|cdata' => 'Description '.$i,
		    'link' => 'http://www.test.com/article-'.$i
	    ]);
	}

	$feed->save('test.xml');
});