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
Laravel 10 CRUD Operation Step By Step
Laravel 10 CRUD Operation Step...

In this article, we will see how to create a crud operation in laravel 10. Here, we will learn about laravel 10 crud ope...

Read More

Feb-24-2023

Laravel 10 Change Column Name And Type In Migration
Laravel 10 Change Column Name...

In this article, we will see laravel 10 change column names and data types in migration. Here, we will learn about...

Read More

Apr-19-2023

Laravel Clear Cache Using Artisan Command
Laravel Clear Cache Using Arti...

In this tutorial, I am giving information about laravel artisan command which can help you to clear your application'...

Read More

May-18-2020

How to Store JSON Data in Database in Laravel 11
How to Store JSON Data in Data...

Hello, laravel web developers! In this article, we'll see how to store JSON data in the database in laravel 11. ...

Read More

Jul-19-2024