RSS FEED IN LARAVEL Installation The Laravel 5/6/7 Feeds Service Provider can be installed via Composer by requiring the willvincent/feeds package in your project's composer.json. { "require": { "willvincent/feeds": "1.1.*" } } Configuration If you're using Laravel 5.5 or newer you may skip the next step. To use the Feeds Service Provider, you must register the provider when bootstrapping your Laravel application. Find the providers key in your config/app.php and register the Service Provider. 'providers' => [ // ... willvincent\Feeds\FeedsServiceProvider::class, ], Find the aliases key in your config/app.php and register the Facade. 'aliases' => [ // ... 'Feeds' => willvincent\Feeds\Facades\FeedsFacade::class, ], ...
Laravel Document

Comments
Post a Comment