outhebox / laravel-fix-arabic-numbers
Auto Convert all Arabic numbers input to English Numbers For Laravel framework & nova
v1.0
2019-12-15 07:46 UTC
Requires
- php: >=5.6.4
- laravel/framework: *
Requires (Dev)
- codacy/coverage: dev-master
- phpunit/phpunit: ^5.7
- squizlabs/php_codesniffer: ^3.1
This package is auto-updated.
Last update: 2024-10-09 08:34:51 UTC
README
This package allows you to auto fix Arabic numbers form inputs.
Installation
This package can be used in Laravel 5.4 and up.
You can install the package via composer:
composer require outhebox/laravel-fix-arabic-numbers
Usage
Laravel
In app/Http/Kernel.php
, register the middleware:
protected $middleware = [ //... \OutheBox\FixArabicNumbers\Http\Middleware\FixArabicNumbers::class, ]
Lumen
In bootstrap/app.php
, register the middleware:
$app->middleware([ \OutheBox\FixArabicNumbers\Http\Middleware\FixArabicNumbers::class, ]);
Extending
If you need to EXTEND the existing FixArabicNumbers
middleware note that:
- Your
FixArabicNumbers
middleware needs to extend theOutheBox\FixArabicNumbers\Http\Middleware\FixArabicNumbers
middleware - Add the fields you want to except form the middle ware to
/** * The attributes that should not be trimmed. * * @var array */ protected $except = [ // ];
License
The MIT License (MIT). Please see License File for more information.