alkoumi / laravel-arabic-tafqeet
a package to translate money numbers to our Amazing 💝 Arabic language TAFQEET . to look like [فقط تسعمائة ألف ريال و أربعة و ثلاثون هللة لاغير]
                                    Fund package maintenance!
                                                                            
                                                                                                                                        
                                                                                    
                                                                            
                                                                                                                                        Patreon
                                                                                    
                                                                
Installs: 11 797
Dependents: 0
Suggesters: 0
Security: 0
Stars: 31
Watchers: 1
Forks: 7
Open Issues: 2
pkg:composer/alkoumi/laravel-arabic-tafqeet
This package is auto-updated.
Last update: 2025-10-29 03:10:26 UTC
README
Recommendations!!! 🥰 Please try alkoumi/laravel-arabic-numbers 🤩 instead.
Laravel package to translate money numbers to our Amazing 💝 Arabic language TAFQEET . to look like [فقط تسعمائة ألف ريال و أربعة و ثلاثون هللة لاغير]
[Otherwise]
Installation to All Laravel Versions 🥳
You can install the package via composer:
composer require alkoumi/laravel-arabic-tafqeet
The service provider will automatically get registered. Or you may manually add the service provider in your config/app.php file:
'providers' => [
    // ...
    Alkoumi\LaravelArabicTafqeet\LaravelArabicTafqeetServiceProvider::class,
];
Usage
Simply pass amount as Number to the method Tafqeet::inArabic($amount,'usd')
the default currency is SAR you can change it by pass the currency with the $amount Tafqeet::inArabic($amount,'usd')
supporing most of arabic currencies same => sar , egp , kwd extra...
use Alkoumi\LaravelArabicTafqeet\Tafqeet; // Default currency is sar $amount = App\cheque::first()->money; $tafqeetInArabic = Tafqeet::inArabic($amount); // Result => "فقط تسعمائة ألف ريال و أربعة و ثلاثون هللة لاغير"
use Alkoumi\LaravelArabicTafqeet\Tafqeet; // change currency $amount = App\cheque::first()->money; $tafqeetInArabic = Tafqeet::inArabic($amount,'egp'); // Result => "فقط تسعمائة ألف جنيه و أربعة و ثلاثون قرش لاغير"
