{{-- IMPORTANT: Do not delete or modify the code below this line.
This section contains essential code for managing subscriptions in the app.
If removed, the subscription functionality will not work properly. --}}
@if (auth()->user()?->isSocialite())
@endif
@if (Auth::user()?->billing_provider === 'stripe')
@include('livewire.pages.assets.default.stripe')
@elseif (Auth::user()?->billing_provider === 'paddle')
@include('livewire.pages.assets.default.paddle')
@elseif (Auth::user()?->billing_provider === 'lemonsqueezy')
@include('livewire.pages.assets.default.lemonsqueezy')
@elseif (Auth::user()?->billing_provider === 'nowpayments')
@include('livewire.pages.assets.default.nowpayments')
@endif
{{-- IMPORTANT: Do not delete or modify the code above this line.
This section contains essential code for managing subscriptions in the app.
If removed, the subscription functionality will not work properly. --}}