@props([ 'title' => '', 'subtitle' => null, 'icon' => 'bx-trending-up', 'items' => [], 'colClass' => 'col-lg-4 col-md-6', ])
{{ $title }}
@if($subtitle) {{ $subtitle }} @endif
@if(count($items) > 0) @foreach($items as $item)
{{ $item['label'] }} {{ $item['value'] ?? 0 }} @if(isset($item['total'])) / {{ $item['total'] }} @endif @if(isset($item['percentage'])) ({{ $item['percentage'] }}%) @endif
@if(isset($item['progress']))
@endif
@endforeach @else

{{ __('No data available') }}

@endif {{ $slot }}