| Login URL: | {{ route('login') }} |
| Email: | {{ $user->email }} |
| Password: | {{ $generatedPassword }} |
* Please change your password after your first login.
| Name: | {{ $user->name }} |
| Email: | {{ $user->email }} |
| Phone: | {{ $user->phone }} |
| Address: | {{ $user->address ?? 'N/A' }} |
| Admission Date: | {{ $subscription->start_date->format('d M Y') }} |
| Plan Name | Duration | Start Date | End Date | Amount |
|---|---|---|---|---|
| {{ $plan->name }} | {{ $plan->duration_in_days }} Days | {{ $subscription->start_date->format('d M Y') }} | {{ $subscription->end_date->format('d M Y') }} | {{ number_format($subscription->price, 2) }} |
| Total Paid: | {{ number_format($subscription->price, 2) }} | |||
| Payment Status: | PAID |
| Payment Method: | {{ $subscription->payment_method ?? 'Cash' }} |
| Transaction ID: | {{ $subscription->transaction_id }} |