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

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article