{{ t('subscription_pending_approval') }}

{{ t('payment_has_been_recorded') }}

{{ t('waiting_for_admin_approval') }}

{{ t('pending_approval_payment')}}

{{ t('selected_plan') }} {{ $subscription->plan->name ?? 'Unknown' }}
{{ t('price') }} @php // Get the invoice related to this subscription $invoice = \App\Models\Invoice\Invoice::where('subscription_id', $subscription->id)->latest()->first(); $basePrice = $subscription->plan->price; $taxes = get_default_taxes(); if ($invoice) { // If we have an invoice, show the total with tax $priceDisplay = $invoice->formattedTotal(); } else { // Calculate approximate tax if no invoice $taxAmount = 0; foreach ($taxes as $tax) { $taxAmount += $basePrice * ($tax->rate / 100); } $totalWithTax = $basePrice + $taxAmount; $priceDisplay = get_base_currency()->format($totalWithTax); } // Prepare tooltip text with price breakdown $baseAmount = get_base_currency()->format($basePrice); $taxBreakdown = []; foreach ($taxes as $tax) { $taxBreakdown[] = $tax->rate . '% ' . $tax->name; } @endphp {{ $priceDisplay }}
{{ $baseAmount }}
@foreach($taxBreakdown as $taxLine) + {{ $taxLine }}
@endforeach
{{ t('payment_method') }} {{ ucfirst($subscription->payment_method ?? 'Offline') }}
{{ t('requested_on') }} {{ $subscription->created_at->format('M d, Y') }}

{{ t('subscription_not_approve') }} {{ $supportEmail }}.