Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork0
📃 Laravel Feeds is an easy and fast way to export large amounts of data into feeds for marketplaces and other consumers.
License
TheDragonCode/laravel-feeds
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Laravel Feeds is an easy and fast way of exporting a large amount of data to feeds for marketplaces and otherconsumers.
🌟 Features
- Chunked queries to database
- Draft mode for a process
- Easy property mapping
- Generation of any feeds, sitemaps, etc.
You can install theLaravel Feeds package viaComposer:
composer require dragon-code/laravel-feeds
You should publishthemigrationand theconfig/feeds.php file with:
php artisan vendor:publish --tag="feeds"Warning
Before running migrations, check the database connection settings in theconfig/feeds.php file.
Now you can run migrations and proceed tocreate feeds.
To create a feed class, use themake:feed console command:
php artisan make:feed User -t
As a result of executing the console command, the filesapp/Feeds/UserFeed.php andapp/Feeds/Items/UserFeedItem.phpwill be created.
Tip
When creating a feed, an operation/migration will also be created to add it to the database.
If the project uses theLaravel Deploy Operations, then an operationclass will be created, otherwise a migration class will be created.
This is necessary to add and manage information about feeds in the database.
Check theoperation/migration file that was created for you and runthe console command:
# For Laravel Deploy Operationsphp artisan operations# For Laravel Migrationsphp artisan migrate
To generate all active feeds, use the console command:
php artisan feed:generate
📚 You will find full documentation on the dedicateddocumentation site.
This package is licensed under theMIT License.
About
📃 Laravel Feeds is an easy and fast way to export large amounts of data into feeds for marketplaces and other consumers.
Topics
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Contributors2
Uh oh!
There was an error while loading.Please reload this page.

