Decrease decimals for Storage Amount

Hi All,

I’ve made a alert for my storage and did a conversion from bytes to GB

Free Storage: {{ $value[‘storage_free’]*1e-9}}

is there a way to decrease the decimals to 2

from
134.702170112GB
to
134.70GB

Thanks All

You can add rounding to it in this way:
{{ number_format(round(($value[’‘storage_free’]*1e-9),2,PHP_ROUND_HALF_DOWN),2) }}

Thanks alot bro!!

I changed it a bit and it looks like this working 100%

<b>Free Storage:</b> {{ number_format(round(($value['storage_free']*1e-9),2,PHP_ROUND_HALF_DOWN),2) }} GB<br>

No problem, happy to help :slight_smile: