├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── .gitkeep ├── routes └── web.php └── src ├── ReadableNumber.php └── ReadableNumbersServiceProvider.php /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-blade-readable-numbers/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-blade-readable-numbers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-blade-readable-numbers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-blade-readable-numbers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-blade-readable-numbers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-blade-readable-numbers/HEAD/composer.json -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-blade-readable-numbers/HEAD/routes/web.php -------------------------------------------------------------------------------- /src/ReadableNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-blade-readable-numbers/HEAD/src/ReadableNumber.php -------------------------------------------------------------------------------- /src/ReadableNumbersServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanhooft/laravel-blade-readable-numbers/HEAD/src/ReadableNumbersServiceProvider.php --------------------------------------------------------------------------------