zhanang19 / human-readable-number
This package will provide a simple helper to format a number into a human friendly number
v1.0
2020-05-10 11:39 UTC
Requires
- illuminate/support: ^5.5 || ^6.0 || ^7.0
This package is auto-updated.
Last update: 2024-11-04 17:52:16 UTC
README
This package will provide a simple helper to format a number into a human friendly number
Installation
Run command composer require zhanang19/human-readable-number
to install this package
This package is tested only in Laravel 7
Usage
Only one parameter needed, the number. Parameter accepted type is string, float, and int. There is 3 ways to use this package:
- Calling static method
\Zhanang19\HumanReadableNumber\HumanReadableNumber::format(123); // 123 \Zhanang19\HumanReadableNumber\HumanReadableNumber::format(12300); // 12K+
- Use a helper function
readablenumber(12312); // 12K+
- Use blade directive
// view.blade.php @readableNumber(12312) // 12K+