PHP

How to Make Login and Registration in Laravel for Beginners

Steps: use below command

Step1:

laravel new project

cd project

composer require laravel/ui --dev

Step2:

php artisan ui bootstrap --auth
php artisan migrate

 

instead of

php artisan make:auth  ( which works for Laravel 5.8 and older versions )
Don't forget to use below Command

 

npm install

npm run build

 

 

 

Basant

Recent Posts

How to Add Auto Increment to a Column in PostgreSQL ?

Learn how to efficiently set up auto-increment columns in PostgreSQL with this step-by-step guide. From…

4 hours ago

How to get the value of selected radio button using jQuery

Just use below code and modified according to your need. Note: this is very useful…

3 months ago

AWS

Steps: AWS puttyubuntu sudo su apt update apt install apache2 service apache2 start service apache2…

8 months ago