Laravel Packages

Export Large Amounts of Data into Feeds with the Feeds Package for Laravel

Published
Export Large Amounts of Data into Feeds with the Feeds Package for Laravel image

The Feeds package for Laravel by Andrey Helldar is an easy and fast way to export large amounts of data into feeds for marketplaces and other consumers. At the core of this package are feeds, which you can generate with the provided make:feed Artisan command. Once you create a feed, you can define how it works:

namespace App\Feeds;
 
use App\Feeds\Items\UserFeedItem;
use App\Models\User;
use DragonCode\LaravelFeed\Enums\FeedFormatEnum;
use DragonCode\LaravelFeed\Feeds\Feed;
use DragonCode\LaravelFeed\Feeds\Items\FeedItem;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
 
class UserFeed extends Feed
{
protected FeedFormatEnum $format = FeedFormatEnum::Json;
 
public function builder(): Builder
{
return User::query()
->whereNotNull('email_verified_at')
->where('created_at', '>', now()->subYear());
}
 
public function item(Model $model): FeedItem
{
return new UserFeedItem($model);
}
}

Along with the UserFeed class, is the UserFeedItem class, which defines each feed item:

namespace App\Feeds\Items;
 
use DragonCode\LaravelFeed\Feeds\Items\FeedItem;
 
/** @property-read \App\Models\User $model */
class UserFeedItem extends FeedItem
{
public function toArray(): array
{
return [
'name' => $this->model->class,
'email' => $this->model->email,
];
}
}

These feeds are generated via the feed:generate command, which produces feeds in static files (stored in the public folder by default). The documentation includes recipes for common formats, such as XML sitemaps, RSS, and more.

Main Features

  • Chunked queries to the database
  • Draft mode during processing
  • Easy property mapping
  • Generate feeds, sitemaps, and more

💻 You can get started with this package on GitHub: TheDragonCode/laravel-feeds.

📖 To install and configure this package, read the package's documentation.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
Taylor disabled GitHub Issues on most Laravel open-source packages. image

Taylor disabled GitHub Issues on most Laravel open-source packages.

Read article
Exclude Vendor and Default Commands in `php artisan dev` image

Exclude Vendor and Default Commands in `php artisan dev`

Read article
The Laracon Archive image

The Laracon Archive

Read article
Group Adjacent Collection Items in Laravel with chunkBy() image

Group Adjacent Collection Items in Laravel with chunkBy()

Read article
Laravel queue:work Now Prints Why the Worker Stopped image

Laravel queue:work Now Prints Why the Worker Stopped

Read article
Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites image

Sidecar Brings Statamic's Control Panel to Your Existing Markdown Sites

Read article