Laravel 8 Class NumberFormatter Not Found

Websolutionstuff | Dec-27-2021 | Categories : Laravel PHP

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.

Solution 1 : 

You just need to enable this extension in php.ini by uncommenting this line:

extension=ext/php_intl.dll

 

Solution 2 :

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 :

Recommended Post
Featured Post
StartOf And EndOf Functions Example Of Carbon
StartOf And EndOf Functions Ex...

In this article, we will see startof and endof functions example of carbon in laravel. As you all know carbon provide ma...

Read More

Dec-19-2020

Google Autocomplete Address In Laravel 9
Google Autocomplete Address In...

In this article, we will see the google autocomplete address in laravel 9. In laravel 8 google autocomplete address...

Read More

Apr-12-2022

Laravel 9 React JS CRUD Operation Example
Laravel 9 React JS CRUD Operat...

This article will show the laravel 9 react js crud operation example. Here, we will learn how to create crud operation i...

Read More

Dec-08-2022

How To Run Python Script In Laravel 9
How To Run Python Script In La...

In this article, we will see how to run the python scripts in laravel 9. Python is a popular programming language.&...

Read More

May-07-2022