@extends('layouts.main') @section('title') {{ __('credits.payment_successful') }} @endsection @section('page_title') {{ __('credits.payment_successful') }} @endsection @php $breadcrumbs = [ ['url' => route('dashboard'), 'label' => __('dashboard.title')], ['url' => route('credits.index'), 'label' => __('credits.my_credits')], ['url' => '', 'label' => __('credits.payment_successful')], ]; @endphp @section('content')

{{ __('credits.payment_successful_title') }}

{{ __('credits.credits_added') }}

{{ __('credits.credits_purchased') }} {{ number_format($purchase->credits_purchased) }}
{{ __('credits.amount_paid') }} ₹{{ number_format($purchase->amount_paid, 2) }}
{{ __('credits.package_label') }}: {{ $purchase->package->title ?? 'N/A' }}
{{ __('credits.transaction_date') }} {{ $purchase->purchased_at->format('d M Y, h:i A') }}
@endsection