PHPackages                             tjbp/laravel-verify-emails - 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. [Mail &amp; Notifications](/categories/mail)
4. /
5. tjbp/laravel-verify-emails

AbandonedArchivedLibrary[Mail &amp; Notifications](/categories/mail)

tjbp/laravel-verify-emails
==========================

Verify email addresses in Laravel &lt;5.7 using the same pattern as password resets.

v1.0.4(5y ago)31.4k4MITPHP

Since Jan 11Pushed 5y ago1 watchersCompare

[ Source](https://github.com/tjbp/laravel-verify-emails)[ Packagist](https://packagist.org/packages/tjbp/laravel-verify-emails)[ RSS](/packages/tjbp-laravel-verify-emails/feed)WikiDiscussions master Synced 1mo ago

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

Laravel Verify Emails
=====================

[](#laravel-verify-emails)

[![StyleCI](https://camo.githubusercontent.com/2f46cb42a669dc31e42613285e41440e87ae5e1fa085d655e6e5e3e86bb9e005/68747470733a2f2f7374796c6563692e696f2f7265706f732f34383834363736342f736869656c643f7374796c653d666c6174)](https://styleci.io/repos/48846764)[![Build Status](https://camo.githubusercontent.com/fc82ea8e92706057ede055f910e3690c881621da6410b187dcb197eeec5ef2c1/68747470733a2f2f7472617669732d63692e6f72672f746a62702f6c61726176656c2d7665726966792d656d61696c732e737667)](https://travis-ci.org/tjbp/laravel-verify-emails)[![Total Downloads](https://camo.githubusercontent.com/b8fd16b4241ce5cdc3e0339cbd4e81d1e73d2e8132207a01c96482818e76bef1/68747470733a2f2f706f7365722e707567782e6f72672f746a62702f6c61726176656c2d7665726966792d656d61696c732f642f746f74616c2e737667)](https://packagist.org/packages/tjbp/laravel-verify-emails)[![Latest Stable Version](https://camo.githubusercontent.com/5d7a72aa010dd716662615d6c19d800c59836970f8100dcacc9a3d92e3e672bf/68747470733a2f2f706f7365722e707567782e6f72672f746a62702f6c61726176656c2d7665726966792d656d61696c732f762f737461626c652e737667)](https://packagist.org/packages/tjbp/laravel-verify-emails)[![Latest Unstable Version](https://camo.githubusercontent.com/b74f631fbc8da601afe2feb7d997846d606b451888498ba52aa34df7005a3fc3/68747470733a2f2f706f7365722e707567782e6f72672f746a62702f6c61726176656c2d7665726966792d656d61696c732f762f756e737461626c652e737667)](https://packagist.org/packages/tjbp/laravel-verify-emails)[![License](https://camo.githubusercontent.com/bdd97b9f61ad44668ff0b558f77ac5bf572d13adf928f38517760729e0cc4079/68747470733a2f2f706f7365722e707567782e6f72672f746a62702f6c61726176656c2d7665726966792d656d61696c732f6c6963656e73652e737667)](https://packagist.org/packages/tjbp/laravel-verify-emails)

This package allows you to verify account emails in Laravel using the same pattern as password resets.

DEPRECATED: Email verification was implemented in the Laravel Framework for the release of 5.7 - if you're using 5.7 or above this package is unnecessary and if you're using a release below 5.6 it's no longer officially supported and you shouldn't be. This package will no longer be maintained.

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

[](#installation)

This package is installable [with Composer via Packagist](https://packagist.org/packages/tjbp/laravel-verify-emails).

Configuration
-------------

[](#configuration)

Add the following to `config/auth.php`:

```
'verify_emails' => [
    'users' => [
        'provider' => 'users',
        'email' => 'auth.emails.verify',
        'table' => 'email_tokens',
        'expire' => 60,
    ],
],
```

Change the `passwords.users.table` setting to `email_tokens` too, allowing password reset and email verification tokens to use the same table. Alternatively, create a new table for the email verification tokens using the same definitions as your password resets table and configure the above accordingly.

Usage
-----

[](#usage)

Implement the `LaravelVerifyEmails\Contracts\Auth\CanVerifyEmail` contract in your `App\User` model and use the `LaravelVerifyEmails\Auth\VerifyEmails\CanVerifyEmail` trait to include the necessary methods. By default, a boolean column on your users table named `verified` is expected. This behaviour can be altered by overriding the methods in the trait.

Add the `LaravelVerifyEmails\Auth\VerifyEmails\VerifyEmailServiceProvider::class` service provider to the `providers` array in `config/app.php`.

Run `php artisan make:verify-emails` to generate views, routes and a controller. Alternatively, use the `LaravelVerifyEmails\Foundation\Auth\VerifiesEmails` trait in a controller of your choice.

Finally, call `$user->unverify()` to mark the user as unverified and send a verification token to their email address. To catch unverified users, replace the `auth` route middleware in `App\Http\Kernel` with `\LaravelVerifyEmails\Auth\Middleware\AuthenticateAndVerifyEmail::class`. If you'd rather use your own middleware, or want to check if a user is verified elsewhere, call `$user->isVerified()`.

Licence
-------

[](#licence)

Laravel Verify Email is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~404 days

Total

5

Last Release

2157d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d40eba324b455601b0d0c22f6e1a1454407ad5466ef1f6fd635f3f2b0a9e5e85?d=identicon)[tjbp](/maintainers/tjbp)

---

Top Contributors

[![tjbp](https://avatars.githubusercontent.com/u/2157634?v=4)](https://github.com/tjbp "tjbp (35 commits)")

---

Tags

laravelemailverifyilluminateverification

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/tjbp-laravel-verify-emails/health.svg)

```
[![Health](https://phpackages.com/badges/tjbp-laravel-verify-emails/health.svg)](https://phpackages.com/packages/tjbp-laravel-verify-emails)
```

###  Alternatives

[propaganistas/laravel-disposable-email

Disposable email validator

5762.6M6](/packages/propaganistas-laravel-disposable-email)[meness/verifi

A Laravel package to handle email verification.

5516.9k](/packages/meness-verifi)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
