{{-- ===== INFRASTRUCTURE ===== --}} @php $c = $content ?? collect(); $infraTitle = $c->has('title') ? $c->get('title')->content_value : __('sections.infra.title'); $infraSubtitle = $c->has('subtitle') ? $c->get('subtitle')->content_value : __('sections.infra.subtitle'); $cardsJson = $c->has('cards') ? $c->get('cards')->content_value : null; $cards = $cardsJson ? json_decode($cardsJson, true) : []; @endphp

{{ $infraTitle }}

{{ $infraSubtitle }}

@foreach($cards as $card)
{{ $card['title'] ?? '' }}
{{ $card['desc'] ?? '' }}
@endforeach