Current Plan: {{ $currentPlan->name }}
Expires: {{ $activeSubscription->ends_at->format('M d, Y') }}
Status: Active
| Feature | @foreach($plans as $plan){{ $plan->name }} @if($plan->is_featured) Recommended @endif | @endforeach
|---|---|
| Price | @foreach($plans as $plan)${{ number_format($plan->price, 2) }} | @endforeach
| Duration | @foreach($plans as $plan){{ $plan->duration_months }} month(s) | @endforeach
| Service Limit | @foreach($plans as $plan){{ $plan->service_limit ? $plan->service_limit : 'Unlimited' }} | @endforeach
| Medication Orders | @foreach($plans as $plan){{ $plan->service_limit ? 'Limited' : 'Unlimited' }} | @endforeach
| Consultations | @foreach($plans as $plan){{ $plan->service_limit ? 'Limited' : 'Unlimited' }} | @endforeach
| Action | @foreach($plans as $plan)@endforeach |
${{ number_format($plan->price, 2) }}
You are currently on the Unlimited Plan. No other plans are available.
@endif