article

Wednesday, March 20, 2019

Installing laravel 5.2 version with Registration, Login, Password Reset and Dashboard

Installing laravel 5.2 version with Registration, Login, Password Reset and Dashboard

open cmd and navigate folder

C:\xampp\htdocs>composer create-project laravel/laravel laravel_5_2 "5.2.*"

C:\xampp\htdocs\laravel_5_2>php artisan make:auth

setup database C:\xampp\htdocs\laravel\.env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel_dev
DB_USERNAME=root

DB_PASSWORD=''

C:\xampp\htdocs\laravel_5_2>php artisan migrate

Navigate url http://localhost/phpmyadmin/ check the new table created
users and password_resets table


Navigate url http://localhost/laravel_5_2/public




Related Post