@foreach ($row['column'] as $colIndex => $column)
@if (isset($row['type']))
@switch($row['type'])
@case('icon-hover-animation')
@include('components.icon-hover-animation')
@break
@case('accordion')
@include('components.item-accordion')
@break
@default
@include('blocks.content')
@endswitch
@else
@include('blocks.content')
@endif
@endforeach
@endforeach