lundi 25 juillet 2016

Account verificatoin via email in Laravel 5

am a laravel Beginner,

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



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire