@if(!empty($pdf_data))
@foreach($pdf_data as $item_key => $item)
@if( $item_key === 'prodhs')
Product Interest
@foreach( $item ?? [] as $prodh_key => $prodh)
{{ $prodh["level_name"] }} : {{ $prodh["prodhs"] }}
@endforeach
@else
{{ $item["title"] }}
@foreach($item["data"] as $key => $data)
{{ $data["subtitle"] }}
{{ $data["text"] }}
@endforeach
@endif
@endforeach
@endif