@php
$currentClient = '';
$i = 0;
@endphp
@foreach ($allProjects as $row)
@php
if ($row['clientName'] == null) {
$row['clientName'] = 'Not assigned to client';
}
@endphp
@if ($currentClient != $row['clientName'])
@if ($i > 0)
@endif
@php $currentClient = $row['clientName']; @endphp
@endif
@php $i++; @endphp
@endforeach