{{ $content['title'] ?? 'Danışmanlıklarım' }}

@if(!empty($content['description']))

{{ $content['description'] }}

@endif
@if(!empty($content['cards']) && is_array($content['cards']))
@foreach($content['cards'] as $card)
@if(!empty($card['icon'])) @php $isUploadedImage = str_contains($card['icon'], '.') || str_contains($card['icon'], '/'); @endphp @if($isUploadedImage)
{{ $card['title'] }}
@else {{ $card['icon'] }} @endif @endif

{{ $card['title'] }}

@if(!empty($card['subtitle'])) {{ $card['subtitle'] }} @endif

{{ $card['description'] }}

@if(!empty($card['button_text']) && !empty($card['button_url'])) @endif
@endforeach
@endif