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 today

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 46% 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

3242d 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

3345.4M354](/packages/psalm-plugin-laravel)[yajra/laravel-oci8

Oracle DB driver for Laravel via OCI8

8723.3M27](/packages/yajra-laravel-oci8)[mike-bronner/laravel-model-caching

Automatic caching for Eloquent models.

2.4k161.4k2](/packages/mike-bronner-laravel-model-caching)[api-platform/laravel

API Platform support for Laravel

58190.1k21](/packages/api-platform-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.

45844.8k1](/packages/pressbooks-pressbooks)[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.

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

PHPackages © 2026

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