In this example we will see example of laravel 8 class numberformatter not found. For numberformatter we need PHP 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0 and I have PHP 7 and intl still face numberformatter not found in laravel.
class numberformatter not found in laravel 8 or class numberformatter not found in php just follow simple two solution.
Le's see how to solve laravel 8 class numberformatter not found.
You just need to enable this extension in php.ini by uncommenting this line:
extension=ext/php_intl.dll
In this step, we need to install PHP Intl Extension for it. So, let's open terminal and run below command.
sudo apt-get install php7.4-intl
To check successful installation, run the command php -m. This should show the intl package in the list.
You might also like :
This article will show drag and drop file upload using dropzone js in laravel 8. DropzoneJS is an open-source library th...
Oct-20-2020
In tutorial we will see how to validate laravel 8 image upload validation. In laravel 7/8 you can validate image using t...
Dec-15-2021
In this article, we will see the laravel 9 livewire image upload example. Here, we will learn how to upload an imag...
Dec-01-2022
In this article, we will see how two-way data binding in angular 12. When you create a variable or property to data...
May-12-2022