📜  更改验证电子邮件模板 laravel - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:52.140000             🧑  作者: Mango

代码示例1
subject(Lang::getFromJson('Verify Email Address'))
            ->line(Lang::getFromJson('Please click the button below to verify your email address.'))
            ->action(
                Lang::getFromJson('Verify Email Address'),
                $this->verificationUrl($notifiable)
            )
            ->line(Lang::getFromJson('If you did not create an account, no further action is required.'));
    }
}