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

This package is auto-updated.

Last update: 2024-05-04 16:51:34 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:

  1. Calling static method
    \Zhanang19\HumanReadableNumber\HumanReadableNumber::format(123); // 123
    \Zhanang19\HumanReadableNumber\HumanReadableNumber::format(12300); // 12K+
  2. Use a helper function
    readablenumber(12312); // 12K+
  3. Use blade directive
    // view.blade.php
    @readableNumber(12312) // 12K+

Support