Laravel:認証メールを有効にする
by itsagent
投稿日: 2022年4月8日16:26
config/fortify.php
// Features::emailVerification(),
app/Models/Users.php
use Illuminate\Contracts\Auth\MustVerifyEmail;
class User extends Authenticatable
⇩
class User extends Authenticatable implements MustVerifyEmail
Mailサーバーの設定が必要