User Info
- Name: {{ $subscription->user->name }}
- Email: {{ $subscription->user->email }}
- Phone: {{ $subscription->user->phone ?? '-' }}
Plan Info
- Plan: {{ $subscription->plan->duration }} months
- Price: {{ number_format($subscription->plan->price) }}
- Start Date: {{ $subscription->start_date }}
- End Date: {{ $subscription->end_date }}
- Status:
@if (!$subscription->accepted)
Pending
@elseif($subscription->is_active)
Active
@else
Inactive
@endif
@if (!$subscription->accepted)
@endif
Payment Screenshot
@if ($subscription->payment_screenshot)
 }})
@else
No payment screenshot uploaded.
@endif
@if ($subscription->paymentService)
Transferred Admin's Payment Account
Account : {{ $subscription->paymentService->account_name }}
Phone : {{ $subscription->paymentService->phone_number }}
@endif