@props([ 'current' => 0, 'max' => null, 'type' => 'sms' // sms or email ]) @php $maxLength = $max ?? ($type === 'sms' ? 160 : 1000); $percentage = $maxLength > 0 ? ($current / $maxLength) * 100 : 0; $counterClass = ''; if ($percentage >= 90) { $counterClass = 'danger'; } elseif ($percentage >= 75) { $counterClass = 'warning'; } @endphp