tv2regionerne / statamic-curated-collections
Create curated collections in statamic. Can be used to prioritize content for you frontpage etc.
Installs: 1 189
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 8
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
- dev-main
- v1.41.0
- v1.40.0
- v1.39.0
- v1.38.0
- v1.37.0
- v1.36.0
- v1.35.0
- v1.34.0
- v1.33.0
- v1.32.0
- v1.31.0
- v1.30.0
- v1.29.0
- v1.28.0
- v1.27.0
- v1.26.0
- v1.25.0
- v1.24.0
- v1.23.0
- v1.22.0
- v1.21.0
- v1.20.0
- v1.19.0
- v1.18.0
- v1.17.0
- v1.16.0
- v1.15.0
- v1.14.0
- v1.13.0
- v1.12.0
- v1.11.0
- v1.10.2
- v1.10.1
- v1.10.0
- v1.9.0
- v1.8.2
- v1.8.1
- v1.8.0
- v1.7.0
- v1.6.0
- v1.5.0
- v1.4.0
- v1.3.1
- v1.3.0
- v1.2.0
- v1.1.2.0
- v1.1.0
- v1.0.0
- v0.4.0
- v0.3.0
- v0.2.0
- v0.1.0
- dev-feature/user-permissions
- dev-fix-fallback-deduplicate
- dev-fix/permissions-test
- dev-feature/disconnect-modal
- dev-defensive-collection-fallback
- dev-fix/added-entries-search
- dev-feature/id-not-in
- dev-fix/nested-array-error
- dev-fix/entry-search
- dev-feature/unpublish_time_from_draft
- dev-feature/cache-jobs
- dev-fix/querying-status
- dev-fix/index-tag
- dev-fix/popup-fieldtype
- dev-fi/ui-regressions
- dev-feature/statamic-v5
- dev-feature/websockets
- dev-feature/support-autocache-addon
- dev-fix/support-pagination
- dev-fix/fieldset-linking-in-blueprint-editing
- dev-feature/support-autocache
- dev-bug/fallback-on-empty-collection
- dev-feature/api-integration
This package is auto-updated.
Last update: 2024-10-17 07:06:22 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}