@props([ 'price' => 0, 'isCacheMiss' => false, 'label' => 'Shipping:', ]) @php $formattedPrice = '$' . number_format($price, 2); // Styling for cache miss (orange and bold, works in both light and dark mode) $priceClass = $isCacheMiss ? 'font-bold text-orange-500 dark:text-orange-400' : 'text-gray-700 dark:text-gray-300'; $titleText = $isCacheMiss ? 'Default rate (cache miss) - actual rate will be calculated' : ''; @endphp @if($label) {{ $label }} @endif {{ $formattedPrice }} @if($isCacheMiss) * @endif