{{ __('plans.title') }}

{{ __('plans.subtitle') }}

{{-- Plan lines --}}
@if ($families->isEmpty())

{{ __('plans.empty') }}

@else
@foreach ($families as $family) @endforeach
{{ __('plans.plan') }} {{ __('plans.tier') }} {{ __('plans.live_version') }} {{ __('plans.status') }} {{ __('plans.actions') }}
{{ $family['name'] }} {{ $family['key'] }} @if ($family['is_recommended']) {{ __('plans.recommended_badge') }} @endif @if ($family['drafts'] > 0) {{ trans_choice('plans.drafts', $family['drafts'], ['count' => $family['drafts']]) }} @endif {{ $family['tier'] }} @if ($family['live']) v{{ $family['live']->version }} @if ($family['next']) {{ __('plans.next_from', ['version' => $family['next']->version, 'date' => $family['next']->available_from->local()->isoFormat('L')]) }} @endif @else {{ __('plans.no_live_version') }} @endif @php $selling = in_array($family['key'], $sellable, true); @endphp
@endif
{{-- New plan line --}}

{{ __('plans.new_title') }}

{{ __('plans.new_body') }}

{{ __('plans.create') }}