A simple API to manage todo lists built with Laravel.
Do you like this project? Support it by donating:
or Paypal me
-
Clone the repo locally:
git clone git@github.com:ishanvyas22/laravel-todo-list-api.git cd laravel-todo-list-api
-
Install dependencies
composer install
-
Generate application key (if not already generated)
php artisan key:generate
-
Run database migrations
php artisan migrate
-
Run the dev server (the output will give the address):
php artisan serve
php artisan test
- Add basic validation in create, update task API call
- Take config for task status
- Global scope
- Split methods from
TaskController