@foreach ($result as $tck1)

@php echo $tck1->Description; @endphp

@if(array_key_exists($tck1->EmailId,$emailAttachmentsList))
Attachments
         @php
         $Attachments=$emailAttachmentsList[$tck1->EmailId];
         @endphp
     
@foreach($Attachments as $Attachment)
@if($Attachment->FileType=="image/png" || $Attachment->FileType=="image/jpeg" || $Attachment->FileType=="image/webp" || $Attachment->FileType== "image/gif") @else @endif

{{$Attachment->Name}}

@php $fsize=($Attachment->FileSize)/1024; $fsize=round($fsize,2)." KB"; @endphp {{$fsize}}

@endforeach
@endif @endforeach