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
Laravel 10 Form Validation Example
Laravel 10 Form Validation Exa...

In this article, we will see the laravel 10 form validation example. Here, we will learn about basic form input with lar...

Read More

Mar-22-2023

Laravel 9 Multiple Authentication Using Middleware
Laravel 9 Multiple Authenticat...

In this article, we will see laravel 9 multiple authentications using middleware. Using middleware we authenticate the u...

Read More

Apr-13-2022

Laravel 8 Image Upload Example
Laravel 8 Image Upload Example

In this article, we will see the laravel 8 image upload example. Image or file upload is the most common task...

Read More

Oct-06-2020

Laravel 8 Highcharts Example Tutorial
Laravel 8 Highcharts Example T...

Hello guys, In this tutorial we will see laravel 8 highcharts example tutorial. you will learn how to imple...

Read More

Jul-02-2021