company->slug; $resetUrl = url("/{$slug}/customer/reset/password/".$this->token); $minutes = config('auth.passwords.users.expire'); $opening = 'Hello! You are receiving this email because we received a password reset request for your account.'; $expiry = 'This password reset link will expire in '.$minutes.' minutes'; $closing = 'If you did not request a password reset, no further action is required.'; return (new MailMessage) ->subject('Reset Password Notification') ->line($opening) ->action('Reset Password', $resetUrl) ->line($expiry) ->line($closing); } /** * Nothing is stored for the database channel, which is never used. * * @param mixed $notifiable */ public function toArray($notifiable): array { return []; } }