diff --git a/helpers.md b/helpers.md index e8f8972daa8..d11d0c8db1f 100644 --- a/helpers.md +++ b/helpers.md @@ -1552,6 +1552,10 @@ $currency = Number::currency(1000, in: 'EUR'); $currency = Number::currency(1000, in: 'EUR', locale: 'de'); // 1.000,00 € + +$currency = Number::currency(1000, in: 'EUR', locale: 'de', precision: 0); + +// 1.000 € ```