Laravel 8 Custom Email Verification Tutorial

Websolutionstuff | Dec-29-2021 | Categories : Laravel PHP

In this article, we will see an example of laravel 8 custom email verification. Many web applications require users to verify their email addresses before using the application. Laravel provides convenient built-in services for sending and verifying email verification requests.

So,I will give you an example of custom email verification in laravel 8 or laravel 8 auth verify email. For custom email verification we need some basic requirements like middleware, routes and mail configuration.

Let's see the laravel 8 custom email verification tutorial.

Step 1 : Create Laravel 8 Application

In this step, we will create a new laravel 8 project using the below command.

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

 

 

Step 2 : Configuration Database

Now, we will configure a database in the .env file.

DB_CONNECTION = mysql
DB_HOST = 127.0.0.1
DB_PORT = 3306
DB_DATABASE = Your_database_name
DB_USERNAME = Your_database_username
DB_PASSWORD = Your_database_password

After adding database configuration. After running the default migrations of laravel using the below command.

php artisan migrate

 

Step 3 : Email Configuration for .env

After the database migrates we will set up email configuration in the .env file.

MAIL_DRIVER = smtp
MAIL_HOST = smtp.gmail.com
MAIL_PORT = 587
MAIL_USERNAME = [email protected]
MAIL_PASSWORD = Your_Password
MAIL_ENCRYPTION = TLS

 

 

Step 4: Install Auth

In this step, install laravel/ui package for basic UI using the below command.

composer require laravel/ui

After installing laravel/ui we will install bootstrap auth using the below command for basic login, registration. After that install NPM and run NPM in your project.

php artisan ui bootstrap --auth

Install NPM :

npm install

Run NPM :

npm run dev

 

Step 5 : Setup Email Verification

Now, we will set up email verification on the user.php file. So, in the User model add an email verification class and use middleware for protection. In the User model, you want need to add MustVerifyEmail Auth and implements MustVerifyEmail on the User class.

app/Models/User.php

<?php

namespace App\Models;

use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;

class User extends Authenticatable implements MustVerifyEmail
{
    use HasFactory, Notifiable;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name',
        'email',
        'password',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password',
        'remember_token',
    ];

    /**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    protected $casts = [
        'email_verified_at' => 'datetime',
    ];
}

 

 

routes/web.php

Auth::routes(['verify' => true]);

Route::get('/home', [App\Http\Controllers\HomeController::class, 'index'])->name('home');

 

app/Http/Controllers/HomeController.php

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class HomeController extends Controller
{
    /**
     * Create a new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->middleware(['auth','verified']);
    }

    /**
     * Show the application dashboard.
     *
     * @return \Illuminate\Contracts\Support\Renderable
     */
    public function index()
    {
        return view('home');
    }
}

 


You might also like :

Recommended Post
Featured Post
How To Install Yajra Datatable In Laravel 10
How To Install Yajra Datatable...

In this article, we will see how to install datatable in laravel 10. Here, we will learn about the laravel 10 yajra data...

Read More

Mar-01-2023

Laravel 10 Composer-runtime-api ^2.2 Error - Fixed
Laravel 10 Composer-runtime-ap...

In this article, we will see laravel/framework[v10.0.0, ..., v10.0.3] require composer-runtime-api ^2.2 error fixed...

Read More

Mar-07-2023

jQuery Image Magnifier on Mouse Hover
jQuery Image Magnifier on Mous...

In this article, we will see a jquery image magnifier on mouse hover. Using an image magnifier you can enlarge...

Read More

Jan-04-2021

How To Image Upload Using Ajax In Laravel 9
How To Image Upload Using Ajax...

In this article, we will see how to image upload using ajax in laravel 9. Here, we will learn about image upload in...

Read More

Feb-07-2023