Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
[![Github Workflow Status][badge_build]][link_build]
[![License][badge_license]][link_license]

**Laravel Feeds** is an easy and fast way of exporting a large amount of data to feeds for marketplaces and other
**Laravel Feeds** is an easy and fast way to export large amounts of data into feeds for marketplaces and other
consumers.

> **🌟 Features**
>
> - Chunked queries to database
> - Draft mode for a process
> - Chunked queries to the database
> - Draft mode during processing
> - Easy property mapping
> - Generation of any feeds, sitemaps, etc.
> - Generate feeds, sitemaps, and more

## Installation

Expand All @@ -26,17 +26,16 @@ You can install the **Laravel Feeds** package via [Composer](https://getcomposer
composer require dragon-code/laravel-feeds
```

You should publish
the [migration](database/migrations/2025_09_01_231655_create_feeds_table.php)
and the [config/feeds.php](config/feeds.php) file with:
You should publish the [migration](database/migrations/2025_09_01_231655_create_feeds_table.php) and
the [config/feeds.php](config/feeds.php) file with:

```bash
php artisan vendor:publish --tag="feeds"
```

> [!WARNING]
>
> Before running migrations, check the database connection settings in the [config/feeds.php](config/feeds.php) file.
> Before running migrations, verify the database connection settings in [config/feeds.php](config/feeds.php).

Now you can run migrations and proceed to [create feeds](https://feeds.dragon-code.pro/create-feeds.html).

Expand Down