Laravel Task is a simple beginner user-friendly web application. Therefore, this application provides a basic task list that we want to accomplish and this will help starters learn about basic concepts of laravel.
This application allows users to add, delete, and also edit those tasks. Its purpose is to keep a record of tasks that are complete and incomplete. However, being a basic application, it doesn’t have a notification feature.
Features of the application
- Create, delete as well as update tasks.
- User authentication, login, and registration.
- Filter tasks based on their status (complete or incomplete).
- Table list of all available tasks with details.

Steps for Installation
git clone https://github.com/jeremykenedy/laravel-tasks.git laravel-tasks
cd laravel-tasks
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate --seed
php artisan serve
Alternatively, you can download the project from here.