PHPackages                             voerro/laravel-email-verification - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. voerro/laravel-email-verification

AbandonedLibrary[Authentication &amp; Authorization](/categories/authentication)

voerro/laravel-email-verification
=================================

Email verification made simple

v1.1.1(8y ago)049MITPHPPHP &gt;=7.0

Since Jan 29Pushed 8y ago1 watchersCompare

[ Source](https://github.com/voerro/laravel-email-verification)[ Packagist](https://packagist.org/packages/voerro/laravel-email-verification)[ RSS](/packages/voerro-laravel-email-verification/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (5)Dependencies (6)Versions (6)Used By (0)

Laravel Email Verification
==========================

[](#laravel-email-verification)

[![Packagist](https://camo.githubusercontent.com/c4a5a9ed9e3b72242ac3fdbe9a9025f09540c00f6b6b2640c8ee623354501da4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f766f6572726f2f6c61726176656c2d656d61696c2d766572696669636174696f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/voerro/laravel-email-verification) [![Packagist](https://camo.githubusercontent.com/fc018368fd3c1b4472195b5c16a60bf22e08cd3296810bef72b68c29a8948a1e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f766f6572726f2f6c61726176656c2d656d61696c2d766572696669636174696f6e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/voerro/laravel-email-verification) [![Packagist](https://camo.githubusercontent.com/fb76bfdd6b487a9c5d11f6e014c339024b7b55bfe1ad1dee1dd0ac2f7c071146/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f766f6572726f2f6c61726176656c2d656d61696c2d766572696669636174696f6e2e7376673f7374796c653d666c61742d737175617265)](https://opensource.org/licenses/MIT)

Easily add email verification to your web project or API.

Installation
------------

[](#installation)

1. Install the package using composer:

```
composer require voerro/laravel-email-verification
```

2. Laravel has package auto-discovery since version 5.5. If you have an older version, register the service provider in `config/app.php`:

```
...
'providers' => [
    ...
    Voerro\Laravel\EmailVerification\EmailVerificationServiceProvider::class,
    ...
],
...
```

3. Run the migration to install the package's table to manage verification tokens:

```
php artisan migrate
```

4. Add the package's `trait` `EmailVerifiable` to your User model to add helper methods to it, namely the `verificationToken()` relationship and a method to check if the user's email has been verified `emailVerified()`.

```
