2017 © Pedro Peláez
 

library laraconfirm

Laravel package for signup confirmation

image

devmi/laraconfirm

Laravel package for signup confirmation

  • Monday, March 26, 2018
  • by adamkeen
  • Repository
  • 3 Watchers
  • 4 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Easy Email Confirmation for Your Laravel App

This composer package offers an easy way to add confirmation email step for your Laravel applications., (*1)

Installation

Begin by pulling in the package through Composer., (*2)

composer require devmi/laraconfirm

Next, if using Laravel 5, include the service provider within your config/app.php file. (ignore this step if you using Laravel >= 5.5), (*3)

'providers' => [
    Devmi\Laraconfirm\LaraconfirmServiceProvider::class,
];

run your migration, (*4)

php artisan migrate

Then, replace those 3 traits and don't forget to import them under Devmi\Laraconfirm\Traits\LaraconfirmLoginTrait, (*5)

in App\Http\Controllers\Auth\LoginController;, (*6)

use AuthenticatesUsers;
// By
use LaraconfirmLoginTrait;

in App\Http\Controllers\Auth\RegisterController;, (*7)

use RegistersUsers;
// By
use LaraconfirmRegisterTrait;

in App\Http\Controllers\Auth\ResetPasswordController;, (*8)

use ResetsPasswords;
// By
use LaraconfirmResetsPasswordsTrait;

Finally, to get a nice feedback message add this code to you login page, (*9)

// resources\views\auth\login.blade.php

@if (session('laraconfirmAlert'))


{!! session('laraconfirmAlert') !!}
@endif // above the login form or anywhere you want // the form is here below ...

That's it! You'll now be able to confirm your member email before they login., (*10)

The Versions

26/03 2018

dev-master

9999999-dev

Laravel package for signup confirmation

  Sources   Download

MIT

The Requires

 

by Miloudi Mohamed

laravel email confirmation

29/09 2017

1.0.0

1.0.0.0

Laravel package for signup confirmation

  Sources   Download

MIT

The Requires

 

by Miloudi Mohamed

laravel email confirmation

23/09 2017

1.1

1.1.0.0

Laravel package for signup confirmation

  Sources   Download

The Requires

 

by Miloudi Mohamed

17/09 2017

1.0.1

1.0.1.0

Laravel package for signup confirmation

  Sources   Download

The Requires

 

by Miloudi Mohamed

07/09 2017

1.0

1.0.0.0

Laravel package for signup confirmation

  Sources   Download

The Requires

 

by Miloudi Mohamed