Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/Notifications/LicenseKeyGenerated.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public function toMail(object $notifiable): MailMessage
->line("**{$this->licenseKey}**")
->line('When prompted by Composer, use your email address as the username and this license key as the password.')
->action('View Installation Guide', url('/docs/mobile/1/getting-started/installation'))
->line('If you need to manage your subscription for this license, you can do so on [Stripe](https://billing.stripe.com/p/login/4gwaGV5VK0uU44E288).')
->line("If you have any questions, please don't hesitate to reach out to our support team.")
->lineIf($this->subscription === Subscription::Max, 'As a Max subscriber, you also have access to the NativePHP/mobile repository. To access it, please log in to [Anystack.sh](https://auth.anystack.sh/?accountType=customer) using the same email address you used for your purchase.')
->salutation("Happy coding!\n\nThe NativePHP Team")
Expand Down
17 changes: 16 additions & 1 deletion resources/views/early-adopter.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -811,13 +811,28 @@ class="mx-auto flex w-full max-w-2xl flex-col items-center gap-4 pt-10"
<a
href="https://zenvoice.io/p/67a61665e7a3400c73fb75af"
onclick="event.stopPropagation()"
class="inline-block underline"
class="inline-block underline hover:text-violet-400"
>
follow the instructions here
</a>
to generate your invoice.
</p>
</x-faq-card>

<x-faq-card question="How can I manage my subscription?">
<p>
You can manage your subscription via the
<a
href="https://billing.stripe.com/p/login/4gwaGV5VK0uU44E288"
onclick="event.stopPropagation()"
class="inline-block underline hover:text-violet-400"
aria-label="Stripe billing portal"
target="_blank"
>
Stripe billing portal.
</a>
</p>
</x-faq-card>
</div>
</section>

Expand Down