@foreach([
['name' => 'Free', 'price' => '€0', 'period' => '/mo', 'features' => ['50 links', '1 workspace', '1.000 clicks/mo', 'nimu.li domain'], 'current' => true],
['name' => 'Pro', 'price' => '€12', 'period' => '/mo', 'features' => ['Unlimited links', '3 workspaces', '50.000 clicks/mo', 'Custom domain', 'QR Codes', 'Bio pages'], 'current' => false],
['name' => 'Business', 'price' => '€49', 'period' => '/mo', 'features' => ['Unlimited everything', '10 workspaces', 'Unlimited clicks', 'API access', 'Team members', 'Priority support'], 'current' => false],
] as $plan)
@if($plan['current'])
Current plan
@endif
{{ $plan['name'] }}
{{ $plan['price'] }}
{{ $plan['period'] }}
@foreach($plan['features'] as $feature)
-
{{ $feature }}
@endforeach
@if(!$plan['current'])
@endif
@endforeach