{{-- Close button --}}
{{-- Label --}}

Limit reached

@php $featureKey = $data['feature_key'] ?? 'ai-replies'; // Dynamic content based on feature $content = match($featureKey) { 'ai-replies' => [ 'title' => "You've used all Free replies", 'subtitle' => "Upgrade to keep replying with AI — stay fast and on-brand.", 'badge' => "replies used", 'benefits' => [ "Unlimited AI replies", "Save tone, templates & signatures", "Reply faster when review volume spikes", ], ], 'review-creators' => [ 'title' => "You've used all Free review creators", 'subtitle' => "Upgrade to generate more reviews with AI — keep growing your reputation.", 'badge' => "review creators used", 'benefits' => [ "Unlimited AI review creators", "Save best-performing templates", "Consistent tone across every review", ], ], 'invites' => [ 'title' => "You've used all Free invites", 'subtitle' => "Upgrade to send more review invites to your customers.", 'badge' => "invites used", 'benefits' => [ "Unlimited invites", "Higher response rate templates", "Multi-location support", ], ], 'business' => [ 'title' => "You've reached your business limit", 'subtitle' => "Upgrade to manage more locations from one dashboard.", 'badge' => "businesses used", 'benefits' => [ "Multi-location support", "Centralized dashboard for all locations", "Compare performance across locations", ], ], 'account' => [ 'title' => "You've reached your team member limit", 'subtitle' => "Upgrade to add more team members and collaborate.", 'badge' => "team members used", 'benefits' => [ "Add more team members", "Role-based permissions", "Collaborate on review responses", ], ], default => [ 'title' => "You've reached your limit", 'subtitle' => "Upgrade to continue using this feature.", 'badge' => "used", 'benefits' => [ "Unlimited access", "Premium features", "Priority support", ], ], }; @endphp {{-- Title --}}

{{ $content['title'] }}

{{-- Subtitle --}}

{{ $content['subtitle'] }}

{{-- Usage badge --}}
{{ $data['used'] ?? 0 }} / {{ $data['total'] ?? 0 }} {{ $content['badge'] }}
{{-- Benefits box --}}
    @foreach($content['benefits'] as $benefit)
  • {{ $benefit }}
  • @endforeach
{{-- Action buttons --}}