2017 © Pedro Peláez
 

library laravel-user-verification

User Email Verification For Laravel 5.*

image

jrean/laravel-user-verification

User Email Verification For Laravel 5.*

  • Tuesday, May 22, 2018
  • by jrean
  • Repository
  • 25 Watchers
  • 615 Stars
  • 98,745 Installations
  • PHP
  • 6 Dependents
  • 0 Suggesters
  • 85 Forks
  • 8 Open issues
  • 92 Versions
  • 17 % Grown

The README.md

Laravel User Verification

A PHP package built for Laravel to easily handle user verification and email validation., (*1)

Latest Stable Version Total Downloads License, (*2)

Features

  • Generate and store verification tokens for registered users
  • Send or queue verification emails with token links
  • Handle token verification process
  • Set users as verified
  • Relaunch the verification process anytime

Laravel Compatibility

Laravel Version Package Version
5.0.* - 5.2.* 2.2
5.3.* 3.0
5.4.* 4.1
5.5.* 5.0
5.6.* 6.0
5.7.* - 5.8.* 7.0
6.0.* 8.0
7.0.* - 11.0.* Use master or check below:
7.0.* master
8.0.* 9.0
9.0.* 10.0
10.0.* 11.0
11.0.* 12.0
12.0.* 13.0

This package is now Laravel 12.0 compliant with v13.0.0., (*3)

Installation

Via Composer

composer require jrean/laravel-user-verification

Register Service Provider & Facade

Add the service provider to config/app.php. Make sure to add it above the RouteServiceProvider., (*4)

'providers' => [
    // ...
    Jrean\UserVerification\UserVerificationServiceProvider::class,
    // ...
    App\Providers\RouteServiceProvider::class,
],

Optionally, add the facade:, (*5)

'aliases' => [
    // ...
    'UserVerification' => Jrean\UserVerification\Facades\UserVerification::class,
],

Publish Configuration

php artisan vendor:publish --provider="Jrean\UserVerification\UserVerificationServiceProvider" --tag="config"

Database Configuration

The package requires adding two columns to your users table: verified and verification_token., (*6)

Run Migrations

php artisan migrate --path="/vendor/jrean/laravel-user-verification/src/resources/migrations"

Or publish and customize the migrations:, (*7)

php artisan vendor:publish --provider="Jrean\UserVerification\UserVerificationServiceProvider" --tag="migrations"

Middleware

Default Middleware

Register the included middleware in app/Http/Kernel.php:, (*8)

protected $routeMiddleware = [
    // ...
    'isVerified' => \Jrean\UserVerification\Middleware\IsVerified::class,
];

Apply it to routes:, (*9)

Route::group(['middleware' => ['isVerified']], function () {
    // Protected routes...
});

Custom Middleware

php artisan make:middleware IsVerified

Email Configuration

Default Email View

The package includes a basic email template. The view receives a $user variable containing user details and the verification token., (*10)

Customize Email View

Publish the views:, (*11)

php artisan vendor:publish --provider="Jrean\UserVerification\UserVerificationServiceProvider" --tag="views"

The views will be available in resources/views/vendor/laravel-user-verification/., (*12)

Markdown Email Support

To use Markdown instead of Blade templates, update the user-verification.php config:, (*13)

'email' => [
    'type' => 'markdown',
],

Email Sending Methods

// Send immediately
UserVerification::send($user, 'Email Verification');

// Queue for sending
UserVerification::sendQueue($user, 'Email Verification');

// Send later
UserVerification::sendLater($seconds, $user, 'Email Verification');

Usage

Routes

The package provides two default routes:, (*14)

Route::get('email-verification/error', 'Auth\RegisterController@getVerificationError')->name('email-verification.error');
Route::get('email-verification/check/{token}', 'Auth\RegisterController@getVerification')->name('email-verification.check');

Required Trait

Add the VerifiesUsers trait to your registration controller:, (*15)

use Jrean\UserVerification\Traits\VerifiesUsers;

class RegisterController extends Controller
{
    use RegistersUsers, VerifiesUsers;

    // ...
}

Integration Example

Here's a typical implementation in RegisterController.php:, (*16)

public function register(Request $request)
{
    $this->validator($request->all())->validate();

    $user = $this->create($request->all());

    event(new Registered($user));

    $this->guard()->login($user);

    UserVerification::generate($user);
    UserVerification::send($user, 'Please Verify Your Email');

    return $this->registered($request, $user)
                    ?: redirect($this->redirectPath());
}

Auto-Login After Verification

Enable auto-login after verification in the config:, (*17)

'auto-login' => true,

Translations

Publish translation files:, (*18)

php artisan vendor:publish --provider="Jrean\UserVerification\UserVerificationServiceProvider" --tag="translations"

API Reference

Core Methods

  • generate(AuthenticatableContract $user) - Generate and save a verification token
  • send(AuthenticatableContract $user, $subject = null, $from = null, $name = null) - Send verification email
  • process($email, $token, $userTable) - Process the token verification

Model Traits

Add the UserVerification trait to your User model for these methods:, (*19)

  • isVerified() - Check if user is verified
  • isPendingVerification() - Check if verification is pending

Error Handling

The package throws the following exceptions:, (*20)

  • ModelNotCompliantException
  • TokenMismatchException
  • UserIsVerifiedException
  • UserNotVerifiedException
  • UserNotFoundException
  • UserHasNoEmailException

License

Laravel User Verification is licensed under The MIT License (MIT)., (*21)

The Versions

22/05 2018

dev-master

9999999-dev

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

22/05 2018

6.0.x-dev

6.0.9999999.9999999-dev

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

22/05 2018

v6.0.1

6.0.1.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

09/05 2018

v6.0.0

6.0.0.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

28/11 2017

dev-revert-152-patch-1

dev-revert-152-patch-1

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

01/09 2017

5.0.x-dev

5.0.9999999.9999999-dev

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

01/09 2017

v5.0.1

5.0.1.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

01/09 2017

v5.0.0

5.0.0.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

29/06 2017

4.1.x-dev

4.1.9999999.9999999-dev

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

29/06 2017

v4.1.10

4.1.10.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

21/06 2017

3.0.x-dev

3.0.9999999.9999999-dev

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

27/04 2017

v4.1.9

4.1.9.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

22/04 2017

v4.1.8

4.1.8.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

20/04 2017

v4.1.7

4.1.7.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

20/04 2017

v4.1.6

4.1.6.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

19/04 2017

v3.0.23

3.0.23.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

19/04 2017

v4.1.5

4.1.5.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

31/03 2017

4.0.x-dev

4.0.9999999.9999999-dev

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

31/03 2017

v4.0.6

4.0.6.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

31/03 2017

v3.0.22

3.0.22.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

31/03 2017

2.2.x-dev

2.2.9999999.9999999-dev

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

31/03 2017

v2.2.29

2.2.29.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

31/03 2017

v4.1.4

4.1.4.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

29/03 2017

v4.1.3

4.1.3.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

29/03 2017

v4.0.5

4.0.5.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

29/03 2017

v2.2.28

2.2.28.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

29/03 2017

v3.0.21

3.0.21.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

29/03 2017

v2.2.27

2.2.27.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

27/03 2017

v4.1.2

4.1.2.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

26/03 2017

v4.0.4

4.0.4.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

26/03 2017

v4.1.1

4.1.1.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

25/03 2017

v4.0.3

4.0.3.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

25/03 2017

v3.0.20

3.0.20.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

25/03 2017

v2.2.26

2.2.26.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

25/03 2017

v4.1.0

4.1.0.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

21/03 2017

v4.0.2

4.0.2.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

25/01 2017

v4.0.1

4.0.1.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

24/01 2017

v4.0.0

4.0.0.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

15/01 2017

v3.0.19

3.0.19.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

15/01 2017

v3.0.18

3.0.18.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

06/11 2016

v3.0.17

3.0.17.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

02/11 2016

v3.0.16

3.0.16.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

22/10 2016

v3.0.15

3.0.15.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

07/10 2016

v3.0.14

3.0.14.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

26/09 2016

v3.0.13

3.0.13.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification user activation email activation

16/09 2016

v3.0.12

3.0.12.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

16/09 2016

v3.0.11

3.0.11.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

15/09 2016

v3.0.10

3.0.10.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

15/09 2016

v3.0.9

3.0.9.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

12/09 2016

v3.0.8

3.0.8.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

12/09 2016

v3.0.7

3.0.7.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

10/09 2016

v2.2.25

2.2.25.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

10/09 2016

v2.2.24

2.2.24.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

10/09 2016

v3.0.6

3.0.6.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

07/09 2016

v3.0.5

3.0.5.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

26/08 2016

v3.0.4

3.0.4.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

26/08 2016

v3.0.3

3.0.3.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

23/08 2016

v2.2.22

2.2.22.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

23/08 2016

v2.2.23

2.2.23.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

23/08 2016

v3.0.2

3.0.2.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

23/08 2016

v2.2.21

2.2.21.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

23/08 2016

v2.2.20

2.2.20.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

23/08 2016

v3.0.1

3.0.1.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

23/08 2016

v2.2.19

2.2.19.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

13/08 2016

v3.0.0

3.0.0.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

by Jean Ragouin

laravel framework user verification email verification user activation email activation

12/08 2016

v2.2.18

2.2.18.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

12/07 2016

v2.2.17

2.2.17.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

30/06 2016

v2.2.15

2.2.15.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

30/06 2016

v2.2.16

2.2.16.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

14/06 2016

v2.2.14

2.2.14.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

10/06 2016

v2.2.13

2.2.13.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

08/06 2016

v2.2.12

2.2.12.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

08/06 2016

v2.2.11

2.2.11.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

06/06 2016

v2.2.10

2.2.10.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

05/06 2016

v2.2.9

2.2.9.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

04/06 2016

v2.2.8

2.2.8.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

13/04 2016

v2.2.7

2.2.7.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

08/04 2016

v2.2.6

2.2.6.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

07/04 2016

v2.2.5

2.2.5.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

06/04 2016

v2.2.4

2.2.4.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

04/04 2016

v2.2.3

2.2.3.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

28/03 2016

v2.2.2

2.2.2.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

28/03 2016

v2.2.1

2.2.1.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

28/03 2016

v2.2.0

2.2.0.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

25/03 2016

v2.1.2

2.1.2.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

25/03 2016

v2.1.1

2.1.1.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

25/03 2016

v2.1.0

2.1.0.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

23/03 2016

v2.0.3

2.0.3.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

23/03 2016

v2.0.2

2.0.2.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

22/03 2016

v2.0.1

2.0.1.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

21/03 2016

v2.0

2.0.0.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification

14/03 2016

v1.0

1.0.0.0

User Email Verification For Laravel 5.*

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jean Ragouin

laravel framework user verification email verification