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

jrean/laravel-user-verification is a PHP package built for Laravel 5.*, 6.*, 7.*, 8.*, 9.*, 10.* & 11.* to easily handle a user verification and validate the e-mail., (*1)

Latest Stable Version Total Downloads License, (*2)

VERSIONS

This package is Laravel 11.0 compliant., (*3)

laravel/branch 2.2 3.0 4.1 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 master
5.0.* x
5.1.* x
5.2.* x
5.3.* x
5.4.* x
5.5.* x
5.6.* x
5.7.* x
5.8.* x
6.0.* x
7.0.* x
8.0.* x x
9.0.* x x
10.0.* x x
11.0.* x x

ABOUT

  • [x] Generate and store a verification token for a registered user
  • [x] Send or queue an e-mail with the verification token link
  • [x] Handle the token verification
  • [x] Set the user as verified
  • [x] Relaunch the process anytime

Table of Contents

INSTALLATION

This project can be installed via Composer. To get the latest version of Laravel User Verification, add the following line to the require block of your composer.json file:, (*4)

{
    "require": {
        "jrean/laravel-user-verification": "dev-master"
    }

}

You'll then need to run composer install or composer update to download the package and have the autoloader updated., (*5)

Or run the following command:, (*6)

composer require jrean/laravel-user-verification

Add the Service Provider & Facade/Alias

Once Larvel User Verification is installed, you need to register the service provider in config/app.php. Make sure to add the following line above the RouteServiceProvider., (*7)

Jrean\UserVerification\UserVerificationServiceProvider::class,

You may add the following aliases to your config/app.php:, (*8)

'UserVerification' => Jrean\UserVerification\Facades\UserVerification::class,

Publish the package config file by running the following command:, (*9)

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

CONFIGURATION

The model representing the User must implement the authenticatable interface Illuminate\Contracts\Auth\Authenticatable which is the default with the Eloquent User model., (*10)

Migration

The table representing the user must be updated with two new columns, verified and verification_token. This update will be performed by the migrations included with this package., (*11)

It is mandatory that the two columns are on the same table where the user's e-mail is stored. Please make sure you do not already have those fields on your user table., (*12)

To run the migrations from this package use the following command:, (*13)

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

The package tries to guess your user table by checking what is set in the auth providers users settings. If this key is not found, the default App\User will be used to get the table name., (*14)

To customize the migration, publish it with the following command:, (*15)

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

Middleware

Default middleware

This package provides an optional middleware throwing a UserNotVerifiedException. Please refer to the Laravel Documentation to learn more about how to work with the exception handler., (*16)

To register the default middleware add the following lines to the $routeMiddleware array within the app/Http/Kernel.php file:, (*17)

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

Apply the middleware on your routes:, (*18)

Route::group(['middleware' => ['isVerified']], function () {
    // …

Custom middleware

Create your own custom middleware using the following artisan command:, (*19)

php artisan make:middleware IsVerified

For more details about middlewares, please refer to the Laravel Documentation., (*20)

E-MAIL

This package provides a method to send an e-mail with a link containing the verification token., (*21)

  • send(AuthenticatableContract $user, $subject, $from = null, $name = null)

By default the package will use the from and name values defined into the config/mail.php file:, (*22)

    'from' => ['address' => '', 'name' => ''],

If you want to override the values, simply set the $from and (optional) $name parameters., (*23)

Refer to the Laravel documentation for the proper e-mail component configuration., (*24)

E-mail View

The user will receive an e-mail with a link leading to the getVerification() method (endpoint). The view will receive a $user variable which contains the user details such as the verification token., (*25)

The package allow you to use both traditional blade view files and markdown., (*26)

By default a sample e-mail view is loaded to get you started with:, (*27)

Click here to verify your account: <a href="{{ $link = route('email-verification.check', $user->verification_token) . '?email=' . urlencode($user->email) }}">{{ $link }}</a>

If you prefer to use Markdown instead, update the package config file user-verification.php in the config directory and replace the following:, (*28)

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

by:, (*29)

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

If you want to customize the e-mail views, run the following command to publish them and edit them to your needs:, (*30)

The URL must contain the verification token as parameter + (mandatory) a query string with the user's e-mail as parameter., (*31)

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

The view will be available in the resources/views/vendor/laravel-user-verification/ directory., (*32)

ERRORS

This package throws several exceptions. You are free to use try/catch statements or to rely on the Laravel built-in exceptions handler., (*33)

  • ModelNotCompliantException

The model instance provided is not compliant with this package. It must implement the authenticatable interface Illuminate\Contracts\Auth\Authenticatable, (*34)

  • TokenMismatchException

Wrong verification token., (*35)

  • UserIsVerifiedException

The given user is already verified., (*36)

  • UserNotVerifiedException

The given user is not yet verified., (*37)

  • UserNotFoundException

No user found for the given e-mail address., (*38)

  • UserHasNoEmailException

User email property is null or empty., (*39)

Error View

By default the user-verification.blade.php view will be loaded for the verification error route /email-verification/error. If an error occurs, the user will be redirected to this route and this view will be rendered., (*40)

To customize the view, publish it with the following command:, (*41)

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

The view will be available in the resources/views/vendor/laravel-user-verification/ directory and can be customized., (*42)

USAGE

Routes

By default this packages ships with two routes., (*43)

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');

Overriding package routes

To define your own custom routes, put the package service provider call before the RouteServiceProvider call in the config/app.php file., (*44)

   /*
    * Package Service Providers...
    */
    Jrean\UserVerification\UserVerificationServiceProvider::class,

   /*
    * Application Service Providers...
    */
    // ...
    App\Providers\RouteServiceProvider::class,

Then, add your custom routes in your route file., (*45)

Traits

The package offers three (3) traits for a quick implementation. Only VerifiesUsers trait is mandatory and includes RedirectsUsers., (*46)

Jrean\UserVerification\Traits\VerifiesUsers, (*47)

Jrean\UserVerification\Traits\RedirectsUsers, (*48)

and:, (*49)

Jrean\UserVerification\Traits\UserVerification, (*50)

This last one offers two methods that can be added to the User model., (*51)

  • isVerified checks if a user is marked as verified.
  • isPendingVerification checks if a verification process has been initiated for a user.

Add the use statement to your User model and use the UserVerification within the class:, (*52)

Endpoints

The two (2) following methods are included into the VerifiesUsers trait and called by the default package routes., (*53)

  • getVerification(Request $request, $token)

Handle the user verification., (*54)

  • getVerificationError()

Do something if the verification fails., (*55)

API

The package public API offers eight (8) methods., (*56)

  • generate(AuthenticatableContract $user)

Generate and save a verification token for the given user., (*57)

  • send(AuthenticatableContract $user, $subject = null, $from = null, $name = null)

Send by e-mail a link containing the verification token., (*58)

  • sendQueue(AuthenticatableContract $user, $subject = null, $from = null, $name = null)

Queue and send by e-mail a link containing the verification token., (*59)

  • sendLater($seconds, AuthenticatableContract $user, $subject = null, $from = null, $name = null)

Send later by e-mail a link containing the verification token., (*60)

  • process($email, $token, $userTable)

Process the token verification for the given e-mail and token., (*61)

For the sendQueue, sendLater and sendLaterOn methods, you must configure your queues before using this feature., (*62)

Facade

The package offers a facade UserVerification::., (*63)

Attributes/Properties

To customize the package behaviour and the redirects you can implement and customize six (6) attributes/properties:, (*64)

  • $redirectIfVerified = '/';

Where to reditect if the authenticated user is already verified., (*65)

  • $redirectAfterVerification = '/';

Where to redirect after a successful verification token verification., (*66)

  • $redirectIfVerificationFails = '/email-verification/error';

Where to redirect after a failling token verification., (*67)

  • $verificationErrorView = 'laravel-user-verification::user-verification';

Name of the view returned by the getVerificationError method., (*68)

  • $verificationEmailView = 'laravel-user-verification::email'

Name of the default e-mail view., (*69)

  • $userTable = 'users';

Name of the default table used for managing users., (*70)

Translations

To customize the translations you may publish the files to your resources/lang/vendor folder using the following command:, (*71)

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

This will add laravel-user-verification/en/user-verification.php to your vendor folder. By creating new language folders, like de or fr and placing a user-verification.php with the translations inside, you can add translations for other languages. You can find out more about localization in the Laravel documentation., (*72)

Auto-login

If you wish to automaticaly log in the user after the verification process, update the package config file user-verification.php in the config directory and replace the following:, (*73)

'auto-login' => false,

by:, (*74)

'auto-login' => true,

Customize

You can customize the package behaviour by overriding/overwriting the public methods and the attributes/properties. Dig into the source., (*75)

GUIDELINES

This package doesn't require the user to be authenticated to perform the verification. You are free to implement any flow you may want to achieve., (*76)

This package wishes to let you be creative while offering you a predefined path. The following guidelines assume you have configured Laravel for the package as well as created and migrated the migration according to this documentation and the previous documented steps., (*77)

Note that by default the behaviour of Laravel is to return an authenticated user after the registration step., (*78)

Example

The following code sample aims to showcase a quick and basic implementation following Laravel logic. You are free to implement the way you want. It is highly recommended to read and to understand the way Laravel implements registration/authentication., (*79)

  • Define the e-mail view.

Edit the app\Http\Controllers\Auth\RegisterController.php file., (*80)

  • [x] Import the VerifiesUsers trait (mandatory)
  • [ ] Overwrite and customize the redirect attributes/properties paths available within the RedirectsUsers trait included by the VerifiesUsers trait. (not mandatory)
  • [ ] Overwrite the contructor (not mandatory)
  • [x] Overwrite the register() method (mandatory)
    namespace App\Http\Controllers\Auth;

    use App\User;
    use App\Http\Controllers\Controller;
    use Illuminate\Support\Facades\Validator;
    use Illuminate\Foundation\Auth\RegistersUsers;

    use Illuminate\Http\Request;
    use Illuminate\Auth\Events\Registered;
    use Jrean\UserVerification\Traits\VerifiesUsers;
    use Jrean\UserVerification\Facades\UserVerification;

    class RegisterController extends Controller
    {
        /*
        |--------------------------------------------------------------------------
        | Register Controller
        |--------------------------------------------------------------------------
        |
        | This controller handles the registration of new users as well as their
        | validation and creation. By default this controller uses a trait to
        | provide this functionality without requiring any additional code.
        |
        */

        use RegistersUsers;

        use VerifiesUsers;

        /**
         * Where to redirect users after registration.
         *
         * @var string
         */
        protected $redirectTo = '/home';

        /**
         * Create a new controller instance.
         *
         * @return void
         */
        public function __construct()
        {
            // Based on the workflow you need, you may update and customize the following lines.

            $this->middleware('guest', ['except' => ['getVerification', 'getVerificationError']]);
        }

        /**
         * Get a validator for an incoming registration request.
         *
         * @param  array  $data
         * @return \Illuminate\Contracts\Validation\Validator
         */
        protected function validator(array $data)
        {
            return Validator::make($data, [
                'name' => 'required|max:255',
                'email' => 'required|email|max:255|unique:users',
                'password' => 'required|min:6|confirmed',
            ]);
        }

        /**
         * Create a new user instance after a valid registration.
         *
         * @param  array  $data
         * @return User
         */
        protected function create(array $data)
        {
            return User::create([
                'name' => $data['name'],
                'email' => $data['email'],
                'password' => bcrypt($data['password']),
            ]);
        }

        /**
         * Handle a registration request for the application.
         *
         * @param  \Illuminate\Http\Request  $request
         * @return \Illuminate\Http\Response
         */
        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, 'My Custom E-mail Subject');

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

At this point, after registration, an e-mail is sent to the user. Click the link within the e-mail and the user will be verified against the token., (*81)

If you want to perform the verification against an authenticated user you must update the middleware exception to allow getVerification and getVerificationError routes to be accessed., (*82)

$this->middleware('guest', ['except' => ['getVerification', 'getVerificationError']]);

RELAUNCH THE PROCESS ANYTIME

If you want to regenerate and resend the verification token, you can do this with the following two lines:, (*83)

UserVerification::generate($user);
UserVerification::send($user, 'My Custom E-mail Subject');

The generate method will generate a new token for the given user and change the verified column to 0. The send method will send a new e-mail to the user., (*84)

LARAVEL SPARK

For Laravel Spark integration, follow this article from Ian Fagg, (*85)

CONTRIBUTE

Feel free to comment, contribute and help. 1 PR = 1 feature., (*86)

LICENSE

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

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