bestmomo/laravel-email-confirmation
最新稳定版本:V1.1.5
Composer 安装命令:
composer require bestmomo/laravel-email-confirmation
包简介
Email address confirmation with Laravel
README 文档
README
This package is to add email confirmation to Laravel 5.4 or 5.5 project.
It should be used after php artisan make:auth command but can also be added to existing project.
There is a french presentation of this package.
Features
- create a migration to add confirmation columns to users table
- create routes for confirmation
confirmation/resendconfirmation/{id}/{token} - add an artisan command to override login and register views
- send email notification with registration
- add translations for notification (there are french, english, arabic, swedish and spanish translation ones)
- block login for not confirmed user and launch an alert with resend link for notification
- block auto login on password reset for not confirmed user
Installation
Add package to your composer.json file :
composer require bestmomo/laravel-email-confirmation
For Laravel 5.4 add service provider to config/app.php (with Laravel 5.5 there is the package discovery):
Bestmomo\LaravelEmailConfirmation\ServiceProvider::class,
From V1.1.5 you must publish the migration with:
php artisan vendor:publish --provider="Bestmomo\LaravelEmailConfirmation\ServiceProvider" --tag="confirmation:migrations"
Run the published migration:
php artisan migrate
Change trait reference in LoginController :
use Bestmomo\LaravelEmailConfirmation\Traits\AuthenticatesUsers;
Change trait reference in RegisterController :
use Bestmomo\LaravelEmailConfirmation\Traits\RegistersUsers;
Change trait reference in ResetPasswordController:
use Bestmomo\LaravelEmailConfirmation\Traits\ResetsPasswords;
Publish
- If you have used the
php artisan make:authcommand
Override login and register views to get confirmation alerts :
php artisan confirmation:auth
- If you have custom scaffold
You must add alerts in login and register views. Here are 2 examples with Bootstrap.
Login view :
@if (session('confirmation-success'))
<div class="alert alert-success">
{{ session('confirmation-success') }}
</div>
@endif
@if (session('confirmation-danger'))
<div class="alert alert-danger">
{!! session('confirmation-danger') !!}
</div>
@endif
Register view :
@if (session('confirmation-success'))
<div class="alert alert-success">
{{ session('confirmation-success') }}
</div>
@endif
Optional Publish
If you want to do some changes or add a language you can publish translations :
php artisan vendor:publish --tag=confirmation:translations
If you want to do some changes to confirmation notification you can make a copy in App :
php artisan confirmation:notification
统计信息
- 总下载量: 71.82k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 92
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-02-05