@props([
'counts' => null,
])
@if($counts)
@foreach($counts as $label => $count)
@php
$class = match(strtolower($label)) {
'total' => 'dark',
'pending' => 'warning text-dark',
'submitted' => 'primary',
'verified' => 'success',
'withdrawal' => 'danger',
'active' => 'info',
'inactive' => 'secondary',
default => 'light text-dark',
};
@endphp
{{ Str::headline($label) }}:
{{ $count }}
@endforeach
@endif