Download the PHP package alkoumi/laravel-arabic-numbers without Composer
On this page you can find all versions of the php package alkoumi/laravel-arabic-numbers. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download alkoumi/laravel-arabic-numbers
More information about alkoumi/laravel-arabic-numbers
Files in alkoumi/laravel-arabic-numbers
Package laravel-arabic-numbers
Short Description Laravel package to handel ANY thing 🥳 about our Amazing 💝 Arabic Numbers Functions { كل ما يهم محبي لارافيل واستخدام الأرقام العربية مثل تفقيط الأرقام والمبالغ المالية والعكس و عرض الأرقام بالعربية والعكس }
License MIT
Homepage https://be.net/komy
Informations about the package laravel-arabic-numbers
Laravel Arabic Numbers
Laravel package to handel ANY THING about our Amazing 💝 Arabic Numbers Functions { كل ما يهم محبي لارافيل واستخدام الأرقام العربية مثل تفقيط الأرقام والمبالغ المالية والعكس و عرض الأرقام بالعربية والعكس }
كل ما يهم محبي لارافيل واستخدام الأرقام العربية مثل تفقيط الأرقام والمبالغ المالية والعكس و عرض الأرقام بالعربية والعكس
Installation for all Laravel Versions 🥳
1- You can install the package via composer:
composer require alkoumi/laravel-arabic-numbers
2- You must register the service provider in your config/app.php
file:
'providers' => [
// ...
Alkoumi\LaravelArabicNumbers\LaravelArabicNumbersServiceProvider::class,
];
3- You must register the Middleware in your App\Http\Kernel
file:
protected $middleware = [
// ...
Alkoumi\LaravelArabicNumbers\Http\Middleware\ConvertArabicDigitsToEnlishMiddleware::class
];
Now any request have arabic indic [١،٢،٣،٤،٥،٦،٧،٨،٩،٠] Numbers will Translated 🥳 to [1,2,3,4,5,6,7,8,9,0]
Excepting Fields
If you want to except any field from transforming request, Just add the fields you want to except them in the Middleware ConvertArabicDigitsToEnlishMiddleware::class
:
/**
* The fields that should not be Transformed.
*
* @var array
*/
protected $except = [
'password', 'password_confirmation' ,'numbers','count'
];
Usage
تفقيط المبالغ المالية باللغة العربية الفصحى مثل 123 => { مئة و ثلاثة و عشرون ريالًا فقط لا غير }
You can simply get Tafqeet of The int Money amount directly in Arabic idioms
تفقيط الأرقام باللغة العربية الفصحى مثل 64 => { أربعة و ستون }
You can simply get Tafqeet of The int Value directly in Arabic idioms
إستخراج الأرقام من التفقيط باللغة العربية للأرقام وليس للمبالغ 😉 مثل { أربعة و ستون } => 64
You can simply Reverse Tafqeet in Arabic idioms to The int Number directly
عرض الأرقام العربية بدل الأرقام الإنجليزية والعكس حسب رغبة المستخدم 657 => ٦٥٧
You can simply Show Any Value in Arabic Digits Or English Digits