@php $globalCounter = 0; @endphp
@foreach ($equipmentData as $data)
@foreach ($data['associatedArray'] as $component)
@php
$parts = explode('@', $component['component_tag']);
$tagName = $parts[0];
$tagType = $parts[1] ?? 'Tipo não especificado'; // Garante que o tipo não seja nulo
@endphp
Tag : {{ $tagName }}
{{ $tagType }}
@php $globalCounter++; @endphp
@if ($globalCounter % 4 == 0)
@endif
@endforeach
@endforeach