highsolutions / laravel-feed by HighSolutions
forked from LaraPalCom/laravel-feed

A RSS2 feed generator for Laravel.
65
0
1
Package Data
Maintainer Username: HighSolutions
Maintainer Contact: roumen@crimsson.com (Roumen Damianoff)
Package Create Date: 2017-04-14
Package Last Update: 2020-09-09
Home Page: https://roumen.it/projects/laravel-feed
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:12:50
Package Statistics
Total Downloads: 65
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Laravel-Feed by HighSolutions

Laravel-Feed

A simple feed generator for Laravel 5 with support for RSS 2.

Installation

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

composer require highsolutions/feed

or add the following to your composer.json file:

"highsolutions/feed": "3.*"

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.