A RSS2 feed generator for Laravel.

4.1.0 2020-09-09 13:10 UTC

README

Laravel-Feed by HighSolutions

Laravel-Feed

A simple feed generator for Laravel 5/6.x/7.x/8.x with support for RSS 2.

Installation

Run the following command and provide the latest stable version (^4.0):

composer require highsolutions/feed

or add the following to your composer.json file:

"highsolutions/feed": "^4.*"

This package uses Laravel 5.5 Package Auto-Discovery. For previous versions of Laravel, you need to update config/app.php by adding an entry for the service provider:

HighSolutions\Feed\FeedServiceProvider::class,

and add class alias:

'Feed' => HighSolutions\Feed\Feed::class,

Publish package views (OPTIONAL):

php artisan vendor:publish --provider="HighSolutions\Feed\FeedServiceProvider"

Examples

How to generate basic feed (with optional caching)

How to generate multiple feeds

How to add images to your feed

How to use custom view for your feed

How to use custom content-type for your feed

and more in the Wiki

Credits

This package was originally created by RoumenDamianoff and is available here: laravel-feed.

Currently is developed by HighSolutions, software house from Poland in love in Laravel.