PHPackages                             bestmomo/laravel-email-confirmation - 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. bestmomo/laravel-email-confirmation

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

bestmomo/laravel-email-confirmation
===================================

Email address confirmation with Laravel

V1.1.5(7y ago)9272.7k↑171.4%28[5 issues](https://github.com/bestmomo/laravel-email-confirmation/issues)MITPHPPHP &gt;=5.6.4

Since Feb 5Pushed 6y ago9 watchersCompare

[ Source](https://github.com/bestmomo/laravel-email-confirmation)[ Packagist](https://packagist.org/packages/bestmomo/laravel-email-confirmation)[ Docs](http://github.com/laravel-email-confirmation)[ RSS](/packages/bestmomo-laravel-email-confirmation/feed)WikiDiscussions master Synced yesterday

READMEChangelog (9)Dependencies (1)Versions (10)Used By (0)

Laravel Email Confirmation
--------------------------

[](#laravel-email-confirmation)

This package is to add email confirmation to Laravel 5.4 or 5.5 project.

It should be used after `php artisan make:auth` command but can also be added to existing project.

There is [a french presentation](http://laravel.sillo.org/ajouter-la-confirmation-de-lemail/) of this package.

### Features

[](#features)

- create a migration to add confirmation columns to users table
- create routes for confirmation `confirmation/resend``confirmation/{id}/{token}`
- add an artisan command to override login and register views
- send email notification with registration
- add translations for notification (there are french, english, arabic, swedish and spanish translation ones)
- block login for not confirmed user and launch an alert with resend link for notification
- block auto login on password reset for not confirmed user

### Installation

[](#installation)

Add package to your composer.json file :

```
    composer require bestmomo/laravel-email-confirmation

```

For Laravel 5.4 add service provider to `config/app.php` (with Laravel 5.5 there is the package discovery):

```
    Bestmomo\LaravelEmailConfirmation\ServiceProvider::class,

```

From V1.1.5 you must publish the migration with:

```
    php artisan vendor:publish --provider="Bestmomo\LaravelEmailConfirmation\ServiceProvider" --tag="confirmation:migrations"

```

Run the published migration:

```
    php artisan migrate

```

Change trait reference in `LoginController` :

```
    use Bestmomo\LaravelEmailConfirmation\Traits\AuthenticatesUsers;

```

Change trait reference in `RegisterController` :

```
    use Bestmomo\LaravelEmailConfirmation\Traits\RegistersUsers;

```

Change trait reference in `ResetPasswordController`:

```
    use Bestmomo\LaravelEmailConfirmation\Traits\ResetsPasswords;

```

### Publish

[](#publish)

- If you have used the `php artisan make:auth` command

Override login and register views to get confirmation alerts :

```
    php artisan confirmation:auth

```

- If you have custom scaffold

You must add alerts in login and register views. Here are 2 examples with Bootstrap.

Login view :

```
@if (session('confirmation-success'))

        {{ session('confirmation-success') }}

@endif
@if (session('confirmation-danger'))

        {!! session('confirmation-danger') !!}

@endif

```

Register view :

```
@if (session('confirmation-success'))

        {{ session('confirmation-success') }}

@endif

```

### Optional Publish

[](#optional-publish)

If you want to do some changes or add a language you can publish translations :

```
    php artisan vendor:publish --tag=confirmation:translations

```

If you want to do some changes to confirmation notification you can make a copy in App :

```
    php artisan confirmation:notification

```

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity44

Moderate usage in the ecosystem

Community22

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 67.9% 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 ~67 days

Recently: every ~46 days

Total

9

Last Release

2894d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/2959682?v=4)[bestmomo](/maintainers/bestmomo)[@bestmomo](https://github.com/bestmomo)

---

Top Contributors

[![bestmomo](https://avatars.githubusercontent.com/u/2959682?v=4)](https://github.com/bestmomo "bestmomo (19 commits)")[![emenkens](https://avatars.githubusercontent.com/u/2665860?v=4)](https://github.com/emenkens "emenkens (2 commits)")[![kichon](https://avatars.githubusercontent.com/u/637274?v=4)](https://github.com/kichon "kichon (2 commits)")[![kohlerdominik](https://avatars.githubusercontent.com/u/18621527?v=4)](https://github.com/kohlerdominik "kohlerdominik (2 commits)")[![RickyCruz](https://avatars.githubusercontent.com/u/12206138?v=4)](https://github.com/RickyCruz "RickyCruz (1 commits)")[![mbardelmeijer](https://avatars.githubusercontent.com/u/1583095?v=4)](https://github.com/mbardelmeijer "mbardelmeijer (1 commits)")[![amirmasoud](https://avatars.githubusercontent.com/u/4637052?v=4)](https://github.com/amirmasoud "amirmasoud (1 commits)")

---

Tags

laravellaravel-email-confirmation

### Embed Badge

![Health badge](/badges/bestmomo-laravel-email-confirmation/health.svg)

```
[![Health](https://phpackages.com/badges/bestmomo-laravel-email-confirmation/health.svg)](https://phpackages.com/packages/bestmomo-laravel-email-confirmation)
```

###  Alternatives

[directorytree/ldaprecord-laravel

LDAP Authentication &amp; Management for Laravel.

5752.3M18](/packages/directorytree-ldaprecord-laravel)[illuminate/auth

The Illuminate Auth package.

10528.2M1.2k](/packages/illuminate-auth)[althinect/filament-spatie-roles-permissions

3481.1M10](/packages/althinect-filament-spatie-roles-permissions)[masterix21/laravel-licensing

Laravel licensing package with polymorphic assignment to any model, activation keys, expirations/renewals, and seat control via LicenseUsage. Supports offline verification with public-key–signed tokens, a CLI to generate/rotate/revoke keys, and an extensible architecture via config and contracts.

1563.0k4](/packages/masterix21-laravel-licensing)

PHPackages © 2026

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