Skip to content

Latest commit

 

History

History
executable file
·
32 lines (21 loc) · 824 Bytes

README.md

File metadata and controls

executable file
·
32 lines (21 loc) · 824 Bytes

task-manager-app

Laravel Task Manager Application

  1. User can add new task, edit, mark complete/incomplete and delete them
  2. User can see the list of tasks.
  3. Task can pinned to top of the list.
  4. User can update profile. Fields are: name, phone, address, city, state, zip, country
  5. User can change password separately. Fields are: old password, new password, confirm password
  6. Admin can add admin & regular users.
  7. Admin can set user status active/inactive.
  8. Every admin can have their own user group.

Project information

  1. Framework: Laravel ^7.0
  2. Database: MySQL

Setup Instructions

composer install

composer update

sudo cp .env.example .env

note: edit .env to set your DB, user, password

php artisan migrate:fresh --seed

php artisan key:generate

php artisan serve