Subscription

My Subscription

View Pricing
@if ($activeSubscription)

Current Plan

{{ $activeSubscription->plan?->name ?? 'Plan removed' }}

Status

{{ $activeSubscription->status }}

Started

{{ $activeSubscription->starts_at?->format('M d, Y') ?? 'Not set' }}

Expires

{{ $activeSubscription->ends_at?->format('M d, Y') ?? 'No expiry' }}

Billing Cycle

{{ $activeSubscription->plan?->billing_period ?? 'Unknown' }}

Your access remains active until the expiry date. Upgrade and renew actions send you back to the pricing page so you can choose a new plan.

Upgrade Renew
@csrf
@else

No Active Plan

You do not have an active subscription yet.

Choose a plan from the pricing page when payment mode is active. If payment mode is off, you can continue using ViZuTrade normally.

Go to Pricing
@endif @if ($latestSubscription && ! $activeSubscription)

Latest Subscription

Plan

{{ $latestSubscription->plan?->name ?? 'Plan removed' }}

Status

{{ $latestSubscription->status }}

Expired

{{ $latestSubscription->ends_at?->format('M d, Y') ?? 'Not set' }}

@endif

Payment History

All subscription payment attempts for your account.

@forelse ($payments as $payment) @empty @endforelse
Date Plan Gateway Amount Status
{{ $payment->created_at->format('M d, Y') }} {{ $payment->plan?->name ?? 'Plan removed' }} {{ $payment->gateway?->name ?? 'Gateway removed' }} {{ $payment->currency }} {{ number_format((float) $payment->amount, 2) }} {{ $payment->status }}
No payment history yet.
{{ $payments->links() }}