@php use App\Finance\FinanceCopy; @endphp

{{ __('settings.Subscription') }}

{{ __('settings.You are on this pack. Higher packs appear below when an upgrade is available.') }}

{{ __('settings.Current pack') }}

{{ $currentPlan->title }}

{{ $currentPlan->formatPrice($entitlement?->interval?->value ?? 'monthly') }}

@if ($entitlement?->interval)

{{ __('settings.Billed') }} · {{ FinanceCopy::interval($entitlement->interval) }}

@endif @if ($entitlement?->ends_at)

{{ __('settings.Renews') }} · {{ $entitlement->ends_at->toFormattedDateString() }}

@endif
@if ($offers === [])

{{ __('settings.You are on the highest pack.') }}

@else

{{ __('settings.Choose a pack') }}

@foreach ($offers as $pack)

{{ $pack['title'] }}

{{ $pack['summary'] }}

    @foreach ($pack['bullets'] as $bullet)
  • {{ $bullet }}
  • @endforeach
@if (filled($pack['checkout'])) {{ $pack['cta'] }} @elseif (filled($pack['contact'])) {{ $pack['cta'] }} @endif
@endforeach
@endif