*/ public function via(object $notifiable): array { return ['mail']; } public function toMail(User $notifiable): MailMessage { return (new MailMessage) ->subject(__('Your Certified subscription was switched back to Free')) ->greeting(__('Hello :name,', ['name' => $notifiable->name])) ->line(__("We didn't receive a (timely) payment, so your account has been switched back to the Free plan.")) ->line(__("Your existing certificates are kept, but you won't be able to add new ones beyond the Free plan's limit.")) ->action(__('Manage subscription'), route('billing.edit')); } }