hjolfaei/todo

This package provides you with a simple todo list

Maintainers

Details

github.com/hjolfaei/todo

Source

Issues

Installs: 19

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:Blade

v1.1.3 2022-06-30 10:09 UTC

This package is auto-updated.

Last update: 2025-05-29 01:56:19 UTC


README

This package add todo ability to your app

Installation

composer require hjolfaei/todo
# migrate database
php artisan migrate

Instructions

To use this package you most create "token" column inside your "users" table and save your user token inside created column. then use that token for header authorization. for more information see this url in your app after installing package

http://APP_URL/todo

API Endpoints

#Fill test data:
/api/v1/todo/fill

#All tasks:
/api/v1/todo/tasks

#All labels:
/api/v1/todo/labels

#Special task:
/api/v1/todo/tasks/task-id
#methods: Info:GET Create:POST Update:UPDATE Delete:DELETE

#Special label:<br>
/api/v1/todo/labels/label-id
#methods: Info:GET Create:POST Update:UPDATE