PHPackages                             devmi/laraconfirm - 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. devmi/laraconfirm

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

devmi/laraconfirm
=================

Laravel package for signup confirmation

1.1(8y ago)5171PHPPHP &gt;=5.5.0

Since Sep 23Pushed 8y ago3 watchersCompare

[ Source](https://github.com/AdamKeen/laraconfirm)[ Packagist](https://packagist.org/packages/devmi/laraconfirm)[ RSS](/packages/devmi-laraconfirm/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (2)Dependencies (2)Versions (3)Used By (0)

Easy Email Confirmation for Your Laravel App
============================================

[](#easy-email-confirmation-for-your-laravel-app)

This composer package offers an easy way to add confirmation email step for your Laravel applications.

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

[](#installation)

Begin by pulling in the package through Composer.

```
composer require devmi/laraconfirm
```

Next, if using Laravel 5, include the service provider within your `config/app.php` file. (ignore this step if you using Laravel &gt;= 5.5)

```
'providers' => [
    Devmi\Laraconfirm\LaraconfirmServiceProvider::class,
];
```

run your migration

```
php artisan migrate
```

Then, replace those 3 traits and don't forget to import them under `Devmi\Laraconfirm\Traits\LaraconfirmLoginTrait`

in `App\Http\Controllers\Auth\LoginController;`

```
use AuthenticatesUsers;
// By
use LaraconfirmLoginTrait;
```

in `App\Http\Controllers\Auth\RegisterController;`

```
use RegistersUsers;
// By
use LaraconfirmRegisterTrait;
```

in `App\Http\Controllers\Auth\ResetPasswordController;`

```
use ResetsPasswords;
// By
use LaraconfirmResetsPasswordsTrait;
```

Finally, to get a nice feedback message add this code to you login page

```
// resources\views\auth\login.blade.php

@if (session('laraconfirmAlert'))

    {!! session('laraconfirmAlert') !!}

@endif
// above the login form or anywhere you want
// the form is here below
...
```

That's it! You'll now be able to confirm your member email before they login.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 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 ~5 days

Total

2

Last Release

3197d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/10816975?v=4)[Miloudi Mohamed](/maintainers/MiloudiMohamed)[@MiloudiMohamed](https://github.com/MiloudiMohamed)

---

Top Contributors

[![MiloudiMohamed](https://avatars.githubusercontent.com/u/10816975?v=4)](https://github.com/MiloudiMohamed "MiloudiMohamed (12 commits)")

---

Tags

email-confirmationlaravellaravel-email-confirmation

### Embed Badge

![Health badge](/badges/devmi-laraconfirm/health.svg)

```
[![Health](https://phpackages.com/badges/devmi-laraconfirm/health.svg)](https://phpackages.com/packages/devmi-laraconfirm)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M341](/packages/psalm-plugin-laravel)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M179](/packages/laravel-ai)[yajra/laravel-oci8

Oracle DB driver for Laravel via OCI8

8793.2M23](/packages/yajra-laravel-oci8)[illuminate/queue

The Illuminate Queue package.

21332.6M1.5k](/packages/illuminate-queue)[glushkovds/phpclickhouse-laravel

Adapter of the most popular library https://github.com/smi2/phpClickHouse to Laravel

2051.5M2](/packages/glushkovds-phpclickhouse-laravel)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

45444.2k1](/packages/pressbooks-pressbooks)

PHPackages © 2026

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