ServiceProvider içerisinde aşağıdaki şekilde özelleştirebilirsiniz:
VerifyEmail::createUrlUsing(function ($notifiable) {
$expiration = now()->addMinutes(60);
$id = $notifiable->getKey();
$hash = sha1($notifiable->getEmailForVerification());
$domain = '...';
$url = URL::temporarySignedRoute('verification.verify', $expiration, [
'id' => $id,
'hash' => $hash,
]);
$queryParameters = parse_url($url, PHP_URL_QUERY);
return sprintf(
"%s?id=%s&hash=%s&%s",
$domain . '/verify-email',
$id,
$hash,
$queryParameters
);
});