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 8 Image Upload Validation
Laravel 8 Image Upload Validat...

In tutorial we will see how to validate laravel 8 image upload validation. In laravel 7/8 you can validate image using t...

Read More

Dec-15-2021

Laravel whereDate and whereDay Example
Laravel whereDate and whereDay...

In this article, we will see laravel whereDate and whereDay examples. As you all know laravel provides many in...

Read More

Jan-21-2021

Laravel 11 Livewire Multi Step Wizard Form
Laravel 11 Livewire Multi Step...

In this article, we'll see how to create a multi-step form wizard in laravel 11 Livewire. Here, we'll see step b...

Read More

Jun-17-2024

How To Create Web Notifications In Laravel 9 Using Pusher
How To Create Web Notification...

In this article, we will see how to create web notifications in laravel 9 using pusher. Here, we will learn how to...

Read More

Feb-03-2023