@php
$staffCount = 0;
@endphp
@if ($clinicStaffs->count() > 0)
@foreach ($clinicStaffs as $clinicStaff)
@if ($staffCount % 3 == 0)
@endif
@include('clinic.clinicStaff.parts.card', ['clinicStaff' => $clinicStaff, 'roleList' => $roleList])
@php
$staffCount++;
$staffCount = $staffCount >= 3 ? 0 : $staffCount;
@endphp
@if ($staffCount % 3 == 0)
@endif
@endforeach
@else
{{ __('clinic-staff.index.no_data') }}
@endif