Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 849 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 849 Bytes

Human Readable Number

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