bizmitra/amountinwords
Composer 安装命令:
composer require bizmitra/amountinwords
包简介
A package to convert amount into words
关键字:
README 文档
README
A simple Laravel package to convert numeric amounts into their equivalent words.
Installation
You can install the package via Composer. Run the following command in your Laravel project's root directory:
composer require bizmitra/amountinwords Usage Step 1: Service Provider Registration Laravel should automatically detect the service provider. However, if you want to manually register it, add the following line to the providers array in your config/app.php file: 'providers' => [ // Other Service Providers Bizmitra\Amountinwords\AmountinwordsServiceProvider::class, ], Step 2: Using the Package You can use the PrintAmountInWords class in your controllers or anywhere in your Laravel application. Here’s an example: Example Controller Create a new controller using the following command: php artisan make:controller AmountController Then, use the following code in your AmountController.php: <?php namespace App\Http\Controllers; use Bizmitra\Amountinwords\PrintAmountInWords; class AmountController extends Controller { protected $amountInWords; public function __construct(PrintAmountInWords $amountInWords) { $this->amountInWords = $amountInWords; } public function index() { $amount = 12345; // Example amount $words = $this->amountInWords->displayWords($amount); return response()->json([ 'amount' => $amount, 'in_words' => $words, ]); } } Step 3: Create a Route You can create a route to access the controller in your routes/web.php (or routes/api.php) file: use App\Http\Controllers\AmountController; Route::get('/amount-in-words', [AmountController::class, 'index']); Usage $amount = 4500.00; // Example amount // Call the correct method to convert amount to words with currency names $words = $this->amountInWords->amountToWords($amount, 'USD', 'cents'); return response()->json([ 'amount' => $amount, 'in_words' => $words, Step 4: Accessing the Functionality Now, when you access the /amount-in-words route in your browser or through an API client like Postman, you should get a JSON response with the amount in words: Step 5: Testing the Functionality Make sure to test your functionality by accessing the route you created and verifying that it returns the correct output. License This package is licensed under the MIT License. Author Bizmitra ERP Mahendrasinh Rana & Vishal Email: mkr@bizmitra.io
bizmitra/amountinwords 适用场景与选型建议
bizmitra/amountinwords 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 24 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 10 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「crm」 「converter」 「laravel」 「words」 「ERP」 「amount」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 bizmitra/amountinwords 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 bizmitra/amountinwords 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 bizmitra/amountinwords 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PHP client for the Salesforce SOAP API
Tools to convert between .NET and PHP date formats
Encode integer IDs using a preset or customized symbol set
Command-line utility for Vtiger CRM.
Library for Kommo (AmoCRM)
TCMB Currenct Converter
统计信息
- 总下载量: 24
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 20
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-10-20