fix route subs

This commit is contained in:
Andras Bacsai
2023-08-25 09:53:40 +02:00
parent 39fd6f054b
commit 9db9616a43
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
@endif @endif
@if (currentTeam()->subscription->stripe_cancel_at_period_end) @if (currentTeam()->subscription->stripe_cancel_at_period_end)
<a class="hover:no-underline" href="{{ route('subscription') }}"><x-forms.button>Subscribe <a class="hover:no-underline" href="{{ route('subscription.show') }}"><x-forms.button>Subscribe
again</x-forms.button></a> again</x-forms.button></a>
@endif @endif
<x-forms.button wire:click='stripeCustomerPortal'>Manage My Subscription</x-forms.button> <x-forms.button wire:click='stripeCustomerPortal'>Manage My Subscription</x-forms.button>

View File

@@ -11,7 +11,7 @@
<livewire:subscription.actions /> <livewire:subscription.actions />
@else @else
<x-forms.button class="mt-4"><a class="text-white hover:no-underline" <x-forms.button class="mt-4"><a class="text-white hover:no-underline"
href="{{ route('subscription') }}">Subscribe Now</a> href="{{ route('subscription.show') }}">Subscribe Now</a>
</x-forms.button> </x-forms.button>
@endif @endif