PHP code example of outhebox / laravel-fix-arabic-numbers
1. Go to this page and download the library: Download outhebox/laravel-fix-arabic-numbers library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
outhebox / laravel-fix-arabic-numbers example snippets
protected $middleware = [
//...
\OutheBox\FixArabicNumbers\Http\Middleware\FixArabicNumbers::class,
]
$app->middleware([
\OutheBox\FixArabicNumbers\Http\Middleware\FixArabicNumbers::class,
]);
/**
* The attributes that should not be trimmed.
*
* @var array
*/
protected $except = [
//
];