PHPackages                             atnic/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. [Framework](/categories/framework)
4. /
5. atnic/laravel-email-verification

ActivePackage[Framework](/categories/framework)

atnic/laravel-email-verification
================================

Laravel Email Verification Scaffolding

v0.1.4(7y ago)3186MITPHPPHP &gt;=7.0.0

Since Jul 29Pushed 7y ago2 watchersCompare

[ Source](https://github.com/Atnic/laravel-email-verfication)[ Packagist](https://packagist.org/packages/atnic/laravel-email-verification)[ RSS](/packages/atnic-laravel-email-verification/feed)WikiDiscussions develop Synced 3d ago

READMEChangelogDependencies (1)Versions (7)Used By (0)

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

[](#laravel-email-verification)

Implementation
--------------

[](#implementation)

Laravel Email Verification is a package for generate scaffolding code for email verification within just few step.

But before that make sure you already config you `.env` especially for `MAIL_*` keys. I prefer you to set up using [mailtrap.io](http://mailtrap.io), its super easy!

Okay, then this is the step to install Laravel Email Verification:

- Install this package

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

- Make sure you're already run `php artisan make:auth` before, then run

```
php artisan make:email-verification
```

- Run migration to add `email_verified` column to users table

```
php artisan migrate
```

- Add `Atnic\EmailVerification\Traits\EmailVerifiable` trait to `User` model.

```
