@php
$currentClient = '';
$i = 0;
$containerOpen = false;
@endphp
@foreach ($allProjects as $row)
@if ($currentClient != $row['clientName'])
@if ($i > 0 && $containerOpen)
@php $containerOpen = false; @endphp
@endif
@php
$currentClient = $row['clientName'];
$containerOpen = true;
@endphp
@endif
@php $i++; @endphp
@endforeach
@if ($containerOpen)
@endif