{{-- Feature Grid — a grid of icon + title + description items Props: $features - array of ['icon', 'title', 'description'] $cols - '2' | '3' (default '3') $dark - bool, if true renders on dark background --}} @props([ 'features' => [], 'cols' => '3', 'dark' => false, ])
@foreach($features as $feature)
@include('components.icons.' . ($feature['icon'] ?? 'check'))

{{ $feature['title'] }}

{{ $feature['description'] }}

@endforeach