Laravel Auth UI

Laravel Authentication and Authorization Using laravel UI

Installation

Clone the repository:

git clone 

Install PHP dependencies:

composer install

Install NPM denpendencies:

npm install

Build assets:

npm run dev

Setup configuration:

cp .env.example .env

Generate application Key

php artisan key:generate

Setup database

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=

Run database migration:

php artisan migrate

Run dev server

php artisan serve

The server will run on localhost:8000