user)->tier(); return new Envelope( subject: 'Last chance — your '.ucfirst($tier).' features end tomorrow', ); } public function content(): Content { return new Content( markdown: 'emails.payment-failed-day-5', with: [ 'name' => $this->user->name, 'tier' => PlanFeatures::for($this->user)->tier(), 'portalUrl' => route('billing.portal'), ], ); } }