Hello, Laravel Friends.

Welcome to the MageComp Laravel blog.

Laravel is a rapidly evolving framework, and new features and utilities are being introduced by the platform frequently. Today, in this Laravel blog, we will learn about Numbers that Laravel introduces as a new utility class.

What is a Utility Class in Laravel?

In Laravel, a utility class is not a specific term used in the framework itself. However, the term “utility class” is often used in programming in a broader sense to refer to a class that provides general utility functions or methods that can be used across different parts of an application. In Laravel, you may find such utility-like classes or helper functions that offer common functionalities.

The Laravel Number Class

Introduction

All methods are part of the Illuminate\Support\Number class:

General number formatting

Using the format method, we can format a number according to the current locale.

We can also specify a custom locale to format the number according to that locale’s rules.

Percentage formatting

The formatPercentage method formats a number as a percentage according to the current locale.

Currency formatting

Here’s another fun method used to format various currencies with locale support. Perfect for your webshops!

File size formatting

Here is the toFileSize method which actually is the whole reason behind this utility class. I first submitted a PR to add a File::bytesToHuman() helper (PR #48827), which Taylor then suggested we add as part of a new Number class.

Human readable formatting

Next up is also quite a fun one for when you want something that’s more readable than precise. It converts numbers to a human-readable string.

Set the locale

We can set the locale globally using the setLocale method, for example, in a service provider:

You can also use the withLocale method, which executes the given callback using the specified locale and then restores the original locale:

Conclusion

Hope you found this new number formatting addition in Laravel helpful. It’s always great to have tools that simplify our work, and we encourage you to explore the upcoming Laravel release and consider integrating this utility class into your projects.  It can save you time and effort in formatting numbers, making your work more efficient and effective.

Hire Laravel Developers

Happy coding!!!

Click to rate this post!
[Total: 1 Average: 5]