@php use App\Enumerables\Currency; $currency = (int) ($currency ?? ($_COOKIE['currency'] ?? Currency::GBP)); if (!array_key_exists($currency, Currency::CURRENCY_SIGN)) { $currency = Currency::GBP; } $currencySign = Currency::CURRENCY_SIGN[$currency] . ' '; @endphp {{__('Total')}}{{": "}} {{$currencySign}} {{number_format($total, 2)}}