@vite('resources/css/razor-billing.css')

My Subscription

Current Subscription
{{ $plan['item']['name'] }}
{{ $payments['currency'] }} {{ number_format($payments['amount'] / 100, 2) }} per {{ $plan['period'] }}
Your next billing date is {{ date('F d, Y', $subscription['current_end']) }}
{{ strtoupper($payments['method']) }}
{{ $payments['payVia'] }}
{{ ucfirst($subscription['status']) }}
Manage Your Subscription
@if ($subscription['status'] === 'cancelled')
Your subscription has been cancelled.
You will continue to have access until the end of the current billing period.
@elseif ($subscription['status'] === 'paused') @else @endif
Payment Method
{{ strtoupper($payments['method']) }}
{{ strtoupper($payments['payVia']) }}
Billing Information
Name
{{ $payments['vName'] }}
Email
{{ $payments['email'] }}
Invoice History
@if (!empty($invoiceHistory)) @foreach ($invoiceHistory as $inv)
{{ $inv['date'] }}
{{ $inv['status'] }}
{{ $inv['plan_name'] }}
₹{{ number_format($inv['amount'], 2) }}
@endforeach @else

No invoices available.

@endif
Action completed successfully