@for ($index = 0; $index < 15; $index++)
@php
if ($index < 3) {
$status = 'purple';
}
if ($index >= 3 && $index < 6) {
$status = 'orange';
}
if ($index >= 6 && $index < 9) {
$status = 'green';
}
if ($index >= 9 && $index < 12) {
$status = 'red';
}
if ($index >= 12) {
$status = 'grey';
}
@endphp
Carlos Silva
1610
Atendimento - Fila Cliente
00:20:56
@endfor