hjolfaei / todo
This package provides you with a simple todo list
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
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