@php $feature = getContent('feature.content', true); $features = getContent('feature.element', false, 3); @endphp
{{__($feature->data_values->top_heading)}}
{{__($feature->data_values->heading)}}

{{__($feature->data_values->subheading)}}

@forelse($features as $feature)
@php echo $feature->data_values->icon ?? ''; @endphp
{{__($feature->data_values->title)}}

@if (strlen(__($feature->data_values->short_description)) > 120) {{ substr(__($feature->data_values->short_description), 0, 120) . '...' }} @else {{ __($feature->data_values->short_description) }} @endif

@endforeach