subject('Payment failed - action required') ->greeting('We couldn\'t process your payment') ->line('We attempted to charge your payment method for your subscription renewal, but the payment was declined.') ->line('Please update your payment details to avoid service interruption.') ->action('Update Payment Method', route('hub.dashboard')) ->line('If you believe this is an error, please contact our support team.') ->line('We\'ll automatically retry the payment in a few days.') ->salutation('Host UK'); } public function toArray(object $notifiable): array { return [ 'subscription_id' => $this->subscription->id, 'workspace_id' => $this->subscription->workspace_id, ]; } }