url = $url; } public function via($notifiable) { return ['mail']; } public function toMail($notifiable) { return (new MailMessage) ->subject(__('Verify Email Address')) ->line(__('Please click the button below to verify your email address.')) ->action(__('Verify Your Email Address'), $this->url) ->line(__('If you did not create an account, no further action is required.')); } }