@if(isset($settings->featured_content) && is_array($settings->featured_content))
@foreach($settings->featured_content as $index => $content)
@if (is_array($content) && isset($content['type']))
@if($content['type'] === 'image')
@foreach($content['content'] as $imageIndex => $image)
@endforeach
@elseif($content['type'] === 'video')
@foreach($content['content'] as $videoIndex => $video)
@endforeach
@elseif($content['type'] === 'holiday')
@endif
@endif
@endforeach
@endif