tv2regionerne / statamic-curated-collections
Create curated collections in statamic. Can be used to prioritize content for you frontpage etc.
Package info
github.com/tv2regionerne/statamic-curated-collections
pkg:composer/tv2regionerne/statamic-curated-collections
Requires
- php: ^8.2
- spatie/eloquent-sortable: ^4.0
- statamic/cms: ^4.0 || ^5.0
Requires (Dev)
- laravel/pint: ^1.13
- mockery/mockery: ^1.3.1
- nunomaduro/collision: ^6.0 || ^7.0
- orchestra/testbench: ^7.0 || ^8.0
- pestphp/pest: ^2.24
- phpunit/phpunit: ^9.0 || ^10.0
This package is auto-updated.
Last update: 2026-06-08 11:26:14 UTC
README
Statamic Curated Collection is a Statamic addon.
Features
This addon does:
- This
- And this
- And even this
How to Install
You can search for this addon in the Tools > Addons section of the Statamic control panel and click install, or run the following command from your project root:
composer require tv2regionerne/statamic-curated-collection
How to Use
Here's where you can explain how to use this wonderful addon.
API
This add-on integrates with the Private API addon to provide an end point for managing handlers. The following endpoints are available:
Viewing all curated collections:
GET {base}/statamic-curated-collections
View an individual curated collection:
GET {base}/statamic-curated-collections/{id}
Add a new curated collection:
POST {base}/statamic-curated-collections
Update an individual curated collection:
PATCH {base}/statamic-curated-collections/{id}
Delete a curated collection:
DELETE {base}/statamic-curated-collections/{id}
View all individual curated collection entries:
GET {base}/statamic-curated-collections/{id}/entries
Reorder an invidividual curated collection entries:
POST {base}/statamic-curated-collections/{id}/entries/reorder
Add a new curated collection entry:
POST {base}/statamic-curated-collections/{id}/entries
View an individual curated collection entry:
GET {base}/statamic-curated-collections/{id}/entries/{entryId}
Update an individual curated collection entry:
PATCH {base}/statamic-curated-collections/{id}/entries/{entryId}
Delete a curated collection entry:
DELETE {base}/statamic-curated-collections/{id}/entries/{entryId}