Categories

Saturday, April 20, 2024
#919814419350 therichposts@gmail.com
Laravel 8MysqlPhp

laravel 8 Login Registration Working Tutorial

laravel 8 Login Registration Working Tutorial

Hello friends, welcome back to my blog. Today in this blog post, I am going to tell you, laravel 8 Login Registration Working Tutorial.

Laravel 8 Auth

Guys if you are new in laravel the please check below link for Laravel basics information:

Laravel Basics Tutorial for beginners


Friends now I proceed onwards and here is the code snippet for laravel 8 Login Registration Working Tutorial and please use this carefully to avoid the mistakes:

1. Firstly friends, we need to get  laravel 8 fresh setup and for that, we need to run below commands into our terminal and you must have composer latest version installed into your xmapp or you can download the composer from this https://getcomposer.org/:

composer create-project --prefer-dist laravel/laravel laravelloginregister

//after run above then run below command

cd laravelloginregister

 

2. Now friends we need to run below commands to get laravel 8 auth login registration functionality:

composer require laravel/ui

php artisan ui vue --auth

npm install

npm run dev

php artisan serve //check the working on browser

 

laravel 8 Login Registration Working Tutorial
laravel 8 Login Registration Working Tutorial

3. Now friends, we need to create new database and add that database name and other phpmyadmin details into our laravel 8 project .env file:

phpmyadmin-database
phpmyadmin-database

4. Now friends we need to add below code inside your app/Providers/AppServiceProvider.php file and this code will resolve your error which will come on migrate time:

...
use Illuminate\Support\Facades\Schema;
...
class AppServiceProvider extends ServiceProvider
{
    
    ...
    public function boot()
    {
        ...
        Schema::defaultStringLength(191);
    }
}

 

5. Now friends we need to run below command into your terminal to create  database default auth tables like users:

php artisan migrate
php-artisan-migrate
php-artisan-migrate
laravel-migrate-tables
After run above migrate command, you will these tables into your database

Now we are done friends and you can check the login and registration functionality. If you have any kind of query or suggestion or any requirement then feel free to comment below.

Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements. For better understanding must watch video above.

I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad.

Jassa

Thanks

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

2 Comments

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.