@if($selectedPlanData && $showPrice)

{{ $selectedPlanData->name }}

Max: {{ $selectedPlanData->max_users ?? '∞' }} utilisateurs • {{ $selectedPlanData->max_clients ?? '∞' }} clients

{{ number_format($selectedPlanData->monthly_price, 0, ',', ' ') }}

FCFA/mois

@php $planFeatures = $selectedPlanData->features ?? []; if (is_string($planFeatures)) { $planFeatures = json_decode($planFeatures, true) ?? []; } @endphp @if(is_array($planFeatures) && count($planFeatures) > 0)

Fonctionnalités:

@foreach(array_slice($planFeatures, 0, 3) as $feature) {{ $feature }} @endforeach @if(count($planFeatures) > 3) +{{ count($planFeatures) - 3 }} autres @endif
@endif
@endif @error($name)

{{ $message }}

@enderror