Today’s Heroes
@php
$i = 0;
@endphp
@foreach ($users as $user)
@php
$colors = ['bg-warning', 'bg-success', 'bg-danger', 'bg-primary', 'bg-info'];
$randomColor = $colors[array_rand($colors)];
$i++;
@endphp
@if ($i <= 6)
{{ substr($user->username, 0, 1) }}
@endif
@endforeach
@if (count($users) > 6)
+{{count($users) -6}}
@endif