@extends('layouts.customer') @section('title', 'Payment Successful') @section('page-title', 'Payment Successful') @section('content')

Payment successful

Your subscription is being activated. If you don't see it active immediately, refresh in a few seconds.

You're all set
@if($subscription)
Plan: {{ $subscription->plan_name ?: ($subscription->plan?->name ?? 'Subscription') }}
Status: {{ ucfirst($subscription->status) }}
@else
Subscription details are not available yet.
@endif
Go to Billing Go to Dashboard
@endsection