Skip to content

Commit 76d6fbb

Browse files
Added features info to README.md
1 parent b90c21c commit 76d6fbb

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@
1010
**Laravel Feeds** is an easy and fast way of exporting a large amount of data to feeds for marketplaces and other
1111
consumers.
1212

13+
> **🌟 Features**
14+
>
15+
> - Chunked queries to database
16+
> - Draft mode for a process
17+
> - Easy property mapping
18+
> - Generation of any XML (feeds, sitemaps, etc.)
19+
1320
## Installation
1421

1522
To get the latest version of **Laravel Feeds**, simply require the project
@@ -160,9 +167,9 @@ According to this example, the XML file with the following contents will be gene
160167
</users>
161168
```
162169

163-
## Objects, attributes and more
170+
### Objects, attributes and more
164171

165-
### Setting the name of the root element
172+
#### Setting the name of the root element
166173

167174
```php
168175
class UserFeed extends Feed
@@ -174,7 +181,7 @@ class UserFeed extends Feed
174181
}
175182
```
176183

177-
### Adding attributes for the main section
184+
#### Adding attributes for the main section
178185

179186
```php
180187
class UserFeedItem extends FeedItem
@@ -194,7 +201,7 @@ class UserFeedItem extends FeedItem
194201
}
195202
```
196203

197-
### Adding attributes for nested elements
204+
#### Adding attributes for nested elements
198205

199206
> [!NOTE]
200207
>
@@ -241,7 +248,7 @@ class UserFeedItem extends FeedItem
241248
}
242249
```
243250

244-
### Header information
251+
#### Header information
245252

246253
If it is necessary to change the file cap, override the `header` method in the feed class:
247254

0 commit comments

Comments
 (0)