Can we use Laravel 5.7 email verification in Laravel 5.6?

114 Views Asked by At

I have completed a project in laravel 5.6, i did't enable the email verification system yet. Now i want to enable the email verification system using laravel 5.7 built-in email verification, i don't like to use any external API or Package for email verification. How can i use laravel 5.7 email verification in laravel 5.6?

1

There are 1 best solutions below

0
On BEST ANSWER

Upgrade Your Project 5.6 to 5.7

Just update your laravel/framework dependency to 5.7.* in your composer.json file. Since you are upgrading from 5.6 to 5.7 then, you can easily just run composer update

And if you modified some of Laravel's Traits or Methods in your 5.6 application, then you can check https://laravel.com/docs/5.7/upgrade for a more detailed info.As I know, Then you can enable the email verification system.