{{-- resources/views/admin/components/stats-row.blade.php --}}
@foreach($stats as $stat)

{{ $stat['value'] ?? $stat['count'] ?? 0 }}

{{ $stat['label'] ?? $stat['title'] ?? 'Statistic' }} @if(isset($stat['subtitle']))
{{ $stat['subtitle'] }}
@endif
@if(isset($stat['icon'])) @endif
@if(isset($stat['progress'])) @endif
@endforeach
@if(empty($stats))

No statistics available

@endif