@php $feature = []; if ( isset($page_meta['feature']) && isset($page_meta['feature']['meta_value']) && !empty($page_meta['feature']['meta_value']) ) { $feature = json_decode($page_meta['feature']['meta_value'], true); } @endphp @if(!empty($feature))

{{ $feature['title'] ?? '' }}

{!! $feature['description'] ?? '' !!}
@if(!empty($feature['content']))
@foreach($feature['content'] as $content) @if(!empty($content['icon']) && !empty($content['title']) && !empty($content['description']))

{{ $content['title'] ?? '' }}

{{ $content['description'] ?? '' }}

@endif @endforeach
@endif
@endif