@if($plan->is_popular)
@endif
@if(!$plan->is_active)
{{ $plan->name }}
@if($plan->name_ar)
{{ $plan->name_ar }}
@endif
AED {{ number_format($plan->price, 2) }}
per {{ ucfirst($plan->duration_type) }}
@if($plan->duration_type === 'custom')
({{ $plan->duration_days }} days)
@endif
@if($plan->description)
{{ $plan->description }}
@endif
Features
@php $features = json_decode($plan->features, true); @endphp
@if($features && is_array($features))
@forelse($features as $feature)
{{ $feature }}
@empty
No features listed
@endforelse
@endif
@if($plan->max_venues || $plan->max_offers || $plan->max_staff || $plan->max_photos_per_venue)
Plan Limits
@if($plan->max_venues)
{{ $plan->max_venues }} Venues
@endif
@if($plan->max_offers)
{{ $plan->max_offers }} Offers
@endif
@if($plan->max_staff)
{{ $plan->max_staff }} Staff
@endif
@if($plan->max_photos_per_venue)
{{ $plan->max_photos_per_venue }} Photos
@endif
@if($plan->monthly_campaigns)
{{ $plan->monthly_campaigns }} Campaigns/Month
@elseif($plan->type === 'business')
No Campaigns
@endif
@endif
@if($plan->analytics_access || $plan->priority_support || $plan->featured_listing || $plan->custom_branding || $plan->api_access)
Premium Features
@if($plan->analytics_access)
Analytics
@endif
@if($plan->priority_support)
Priority Support
@endif
@if($plan->featured_listing)
Featured
@endif
@if($plan->custom_branding)
Custom Branding
@endif
@if($plan->api_access)
API Access
@endif
@endif
Total Subscribers
{{ $plan->subscriptions_count ?? 0 }}
Active
{{ $plan->active_subscriptions_count ?? 0 }}
Edit Plan
View Subscribers
{{ $plan->is_active ? 'Deactivate' : 'Activate' }}
{{ $plan->is_popular ? 'Remove Popular' : 'Mark Popular' }}
Delete Plan