hjolfaei/todo

This package provides you with a simple todo list

Maintainers

Package info

github.com/hjolfaei/todo

Language:Blade

pkg:composer/hjolfaei/todo

Statistics

Installs: 19

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-03-29 00:59:09 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