pomirleanu / laravel-feed by pomirleanu
forked from LaraPalCom/laravel-feed

A simple feed generator for Laravel.
150
0
3
Package Data
Maintainer Username: pomirleanu
Maintainer Contact: pomirleanu.florentin@aol.com (Pomirleanu Florentin-Cristinel)
Package Create Date: 2016-06-11
Package Last Update: 2016-08-19
Home Page: https://roumen.it/projects/laravel-feed
Language: PHP
License: MIT
Last Refreshed: 2024-04-19 15:03:26
Package Statistics
Total Downloads: 150
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

laravel-feed

Latest Stable Version Total Downloads Build Status License

A simple feed generator for Laravel 5.

Notes

Branch dev-master is for development and is UNSTABLE

Installation

Run the following command and provide the latest stable version (e.g v2.10.4) :

composer require roumen/feed

or add the following to your composer.json file :

"roumen/feed": "~2.10"

Then register this service provider with Laravel :

Roumen\Feed\FeedServiceProvider::class,

and add class alias :

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

Publish package views (OPTIONAL) :

php artisan vendor:publish --provider="Roumen\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