clarion-app/lists-backend

A Laravel package for managing lists

dev-main 2025-01-02 08:57 UTC

This package is auto-updated.

Last update: 2025-03-02 09:26:44 UTC


README

This package provides an API to create and manage lists (TODO lists, grocery lists, etc).

Installation

  1. Require the package in your Laravel application:

    composer require clarion-app/lists-backend
  2. Run the migrations:

    php artisan migrate

Usage

The package provides the following API endpoints:

  • GET /api/clarion-app/lists - List all lists
  • POST /api/clarion-app/lists - Create a new list
  • GET /api/clarion-app/lists/{id} - Get a specific list
  • PUT /api/clarion-app/lists/{id} - Update a specific list
  • DELETE /api/clarion-app/lists/{id} - Delete a specific list
  • POST /api/clarion-app/lists/{id}/clone - Clone a specific list