Adds the @readable_int
directive to Laravel's Blade templating system. This way you can shorten numbers into strings like 123K+
.
You can install the package via composer:
composer require sandervanhooft/laravel-blade-readable-numbers
@readable_int(123456) // outputs 123K+
@readable_int(123456789) // outputs 123M+
@readable_int(123456789012) // outputs 123B+
@readable_int(123456789012345) // outputs 123T+
composer test
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
- Sander van Hooft - www.sandervanhooft.com
- Appstract for blade directive testing methods
- Radley Sustaire (RadGH) and Hassan Amir Khan (hassanamirkhan) for the short-number-format gist.
- All Contributors
Subscribe to the newsletter at sandervanhooft.com to learn about the latest Laravel packages and tricks.
The MIT License (MIT). Please see License File for more information.