@php use App\Enums\SubscriptionPlan; // Name, certificate limit, price, and whether OCR is included all come // straight from SubscriptionPlan so this page can never drift from what // billing actually enforces — only the hand-written marketing copy below // (description/priceNote/cta/extra features) needs maintaining by hand. $copy = [ SubscriptionPlan::Free->value => [ 'description' => __('Voor wie Certified wil proberen of maar een handvol certificaten beheert.'), 'priceNote' => __('Voor altijd gratis, geen creditcard nodig'), 'featured' => false, 'cta' => __('Start gratis'), 'features' => [ __('Slimme e-mailreminders'), __('Veilig delen via signed URL'), ], ], SubscriptionPlan::Starter->value => [ 'description' => __("Voor wie meer dan een handvol eigen certificaten en diploma's bijhoudt."), 'priceNote' => __('Eén vast bedrag, jaarlijks gefactureerd'), 'featured' => true, 'cta' => __('Start met :plan', ['plan' => SubscriptionPlan::Starter->label()]), 'features' => [ __('Slimme e-mailreminders'), __('Veilig delen via signed URL'), __('AES-256 versleutelde ZIP-export'), ], ], SubscriptionPlan::Unlimited->value => [ 'description' => __("Voor wie al zijn diploma's, VOG's en certificaten voorgoed op één plek wil bewaken."), 'priceNote' => __('Eén vast bedrag, jaarlijks gefactureerd'), 'featured' => false, 'cta' => __('Start met :plan', ['plan' => SubscriptionPlan::Unlimited->label()]), 'features' => [ __('Slimme e-mailreminders'), __('Veilig delen via signed URL'), __('AES-256 versleutelde ZIP-export'), __('Prioriteit support'), ], ], ]; @endphp
{{ $tier['description'] }}
€{{ number_format($exclVatEuros, 2, ',', '.') }} {{ __('excl. btw') }}
@endif{{ $tier['priceNote'] }}
{{ __('Alle prijzen zijn per jaar en inclusief 21% btw. Start gratis — upgraden kan altijd, opzeggen ook.') }}