@php $calc = [ [ 'number' => 1000000000, 'label' => '__value__ ' . __('billion') ], [ 'number' => 1000000, 'label' => '__value__ ' . __('million') ], [ 'number' => 1000, 'label' => '__value__ ' . __('thousand') ], [ 'number' => 0, 'label' => '__value__' ], ]; $symbol = ''; $currency = get_application_currency(); if ($currency) { $symbol = ' (' . $currency->symbol . ')'; } @endphp