Laravel 5.8 Login and Registration Part — 1

Jeet Ghodasara
2 min readSep 11, 2021

Hi Guys,

In this posts, we have to learned about Login and Registration in Laravel Version 5.8. So Lest’ Started.

Laravel Login & Registration

Step 1 : Laravel Installation

You have to install the laravel in your system. Open your terminal and past this link.

composer global require laravel/installer

Note : before using Laravel, make sure you have Composer installed on your machine. Here is the link composer download link : https://getcomposer.org/

Step 2 : Create a project

Once installed, this command will create a directory firstproject.

laravel new firstproject

This command will be create a directory and installed all laravel dependencies.

OR

Create-Project Via Composer

Alternatively, you may also install Laravel by using composer.

composer create-project --prefer-dist laravel/laravel firstproject "5.8.*"

This command will install only laravel version 5.8 dependencies. your project is ready run.

Step 3: Run Project

go to your terminal and set the path your project. and run this command

--

--

Jeet Ghodasara
Jeet Ghodasara

Written by Jeet Ghodasara

Hi My name is jeet ghodasara Back end Laravel Developer. Also i have experienced in MySQL, MongoDB, Redis, React JS, Vue JS, GitHub.

No responses yet