@props([ 'label' => '', 'current' => 0, 'total' => null, 'color' => 'primary', 'icon' => null, 'showPercent' => true, 'animated' => true, ]) @php $percent = $total && $total > 0 ? min(100, ($current / $total) * 100) : 0; $remaining = $total ? max(0, $total - $current) : null; @endphp