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
How To Implement Google Bar Chart In Vue Js
How To Implement Google Bar Ch...

In this tutorial, we will see how to implement google bar chart in vue js. In vue js perform bar chart tutorial we are u...

Read More

Jan-17-2022

How To Reset Modal Form In jQuery
How To Reset Modal Form In jQu...

Have you ever seen those pop-up boxes on websites? They're called modal forms, and they make it easier to do things...

Read More

Jan-04-2023

Laravel 10: New Features And Release Date
Laravel 10: New Features And R...

In our ever-changing digital landscape, staying ahead of the competition is essential. And that's precisely what we&...

Read More

Jan-11-2023

How To Record And Play Audio In JavaScript
How To Record And Play Audio I...

In this article, we will see how to record and play audio in javascript. Here, we will learn about how to record au...

Read More

Feb-20-2023