Laravel simple manage tasks (Create, Read, Update and Delete) application using laravel inbuild authentication,with login and signup for user.And Super admin can manage all tasks . Here is a step by step guide to install it.
Step 1: Clone this project
git clone https://github.com/MohamedMagdy63/manage-tasks-app
Step 2: Install project dependencies using composer.
composer install
Step 3: Copy .env.example file to .env file.
cp .env.example .env
Step 4: Configure database credentials in .env file.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=manage_tasks
DB_USERNAME=root
DB_PASSWORD=
Step 5: Run artisan migration command to migrate table.
php artisan migrate
Step 6: Run artisan serve command to start app server.
php artisan serve
Step 7: Open browser and navigate http://127.0.0.1:8000
If everything works it will open welcome screen in browser
The Laravel framework is open-sourced software licensed under the MIT license.