@props(['items', 'valueFormatter' => null]) @php $collection = collect($items); $max = $collection->max('value') ?: 1; @endphp
@forelse ($collection->take(6) as $item)
{{ $item['label'] }} {{ $valueFormatter ? $valueFormatter($item['value']) : number_format($item['value'], 0, ',', '.') }}
@empty

Belum ada data.

@endforelse