lundi 25 juillet 2016

Account verificatoin via email in Laravel 5

I would like to implement this feature in laravel 5 Auth generate via php artisan make:auth

make the user confirm his account via email using a token

and that with a function in the User model called sendConfirmationEmail

that's my create_user_table migration:

        $table->increments('id');
        $table->string('name')->unique();
        $table->string('email')->unique();
        $table->string('password');
        $table->string('confirmation_token', 60);
        $table->boolean('confirmed')->default(false);
        $table->rememberToken();
        $table->timestamps();



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2a8tJDq
via IFTTT

Aucun commentaire:

Enregistrer un commentaire