{{-- Features Grid Component --}} @php $features = $component['content']['features'] ?? []; // Debug logging if (empty($features)) { \Log::warning('Features Grid has no features', [ 'component_type' => $component['type'] ?? 'unknown', 'content_keys' => array_keys($component['content'] ?? []), 'full_content' => $component['content'] ?? [] ]); } @endphp @if(!empty($features))
@foreach($features as $feature)
@if(!empty($feature['icon']))
@endif @if(!empty($feature['title']))

{{ $feature['title'] }}

@endif @if(!empty($feature['description']))

{{ $feature['description'] }}

@endif
@endforeach
@else
No features configured. Please edit this component to add features.
@endif