@extends('frontend.layouts.app') @section('content')

Subscription Successful!

Thank you, {{ auth()->user()->name }}, for subscribing.


User Details

  • Name: {{ auth()->user()->name }}
  • Email: {{ auth()->user()->email }}
  • Joined: {{ auth()->user()->created_at->format('d M, Y') }}
  • Invoice: Download Invoice

Subscription Details

  • Plan: {{ $subscription->package->name }}
  • Billing Cycle: {{ ucfirst($subscription->package->billing_cycle) }}
  • Status: Active
  • Expires On: {{ date('d M, Y', strtotime($subscription->expires_at)) }}

Payment Details

  • Amount: ${{ number_format($payment->amount, 2) }}
  • Currency: {{ strtoupper($payment->currency) }}
  • Payment Method: Stripe
  • Status: {{ ucfirst($payment->status) }}
@endsection