@props(['data' => []])
@if(!empty($data['section_title']) || !empty($data['section_subtitle']))
@if(!empty($data['section_badge']))

{{ $data['section_badge'] }}

@endif @if(!empty($data['section_title']))

{{ $data['section_title'] }}

@endif @if(!empty($data['section_subtitle']))

{{ $data['section_subtitle'] }}

@endif
@endif @if(!empty($data['plans']))
@foreach($data['plans'] as $plan)
@if(!empty($plan['featured']))
{{ $data['featured_label'] ?? 'Önerilen' }}
@endif @if(!empty($plan['name']))

{{ $plan['name'] }}

@endif
@if(!empty($plan['currency'])) {{ $plan['currency'] }} @endif @if(!empty($plan['price'])) {{ $plan['price'] }} @endif @if(!empty($plan['period'])) /{{ $plan['period'] }} @endif
@if(!empty($plan['features']))
    @foreach($plan['features'] as $feature)
  • {{ $feature }}
  • @endforeach
@endif @if(!empty($plan['button_text'])) {{ $plan['button_text'] }} @endif
@endforeach
@endif