{{ __('dashboard.Packs') }}

{{ __('dashboard.Create, lock, and tune workspace packs.') }}

@allows('packs.compose') @endallows
@error('lock') {{ $message }} @enderror @error('retire') {{ $message }} @enderror @if ($packs->isEmpty())

{{ __('dashboard.No packs yet.') }}

@else {{ __('dashboard.Pack') }} {{ __('dashboard.Summary') }} {{ __('dashboard.Pricing') }} {{ __('dashboard.Holders') }} {{ __('dashboard.Slug') }} {{ __('dashboard.Status') }} @foreach ($packs as $pack)

{{ $pack->title }}

@if ($pack->is_default) {{ __('dashboard.Default') }} @endif
{{ $pack->summary ?: '—' }} {{ $pack->priceLine() }} {{ $pack->entitlements_count }} {{ $pack->slug }} @if ($pack->isLocked()) {{ __('dashboard.Locked') }} @else {{ __('dashboard.Active') }} @endif
@allows('packs.revise') @unless ($pack->is_default && $pack->is_active) @endunless @endallows @allows('packs.retire') @unless ($pack->isBuiltIn() || $pack->is_default) @endunless @endallows
@endforeach
@endif {{ $confirmAction === 'retire' ? __('dashboard.Retire') : __('dashboard.Lock') }}