@props(['stats']) @php $badges = [ ['label' => 'Uptime', 'value' => $stats['uptime']], ['label' => 'Successful transactions', 'value' => number_format($stats['transactions']).'+'], ['label' => 'Security', 'value' => 'Bank-level encryption'], ]; @endphp
@foreach ($badges as $badge)
{{ $badge['value'] }}
{{ $badge['label'] }}
@endforeach