@php $headline = $content['headline'] ?? ''; $sub = $content['subheadline'] ?? ''; $plans = $content['plans'] ?? []; @endphp
@if($headline)

{{ $headline }}

@endif @if($sub)

{{ $sub }}

@endif
@foreach($plans as $plan) @php $highlight = ! empty($plan['highlight']); $features = is_array($plan['features'] ?? null) ? $plan['features'] : array_filter(array_map('trim', explode("\n", (string) ($plan['features'] ?? '')))); @endphp
@if($highlight)
{{ __('marketing.public_pricing_most_popular') }}
@endif

{{ $plan['name'] ?? '' }}

{{ $plan['price'] ?? '' }} @if(! empty($plan['interval']))/ {{ $plan['interval'] }}@endif
    @foreach($features as $feature)
  • {{ $feature }}
  • @endforeach
@if(! empty($plan['cta_label'])) {{-- Fix note: per-plan cta_url is tenant-typed; gate with UrlSafety to block javascript: scheme. --}} {{ $plan['cta_label'] }} @endif
@endforeach