2022-09-20 19:59:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
|
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
|
|
|
|
class VerifyEmailException extends ValidationException
|
|
|
|
{
|
|
|
|
/**
|
2024-02-23 10:54:12 +00:00
|
|
|
* @param \App\User $user
|
2022-09-20 19:59:52 +00:00
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public static function forUser($user)
|
|
|
|
{
|
|
|
|
return static::withMessages([
|
|
|
|
'email' => [__('You must :linkOpen verify :linkClose your email first.', [
|
|
|
|
'linkOpen' => '<a href="/email/resend?email='.urlencode($user->email).'">',
|
|
|
|
'linkClose' => '</a>',
|
|
|
|
])],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|