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 Load Iframe in jQuery onload Event
How to Load Iframe in jQuery o...

Hello, laravel web developers! In this article, we'll see how to load an iframe in jQuery on a load event. In jQuery...

Read More

Jun-21-2024

How To Install Yajra Datatable In Laravel 10
How To Install Yajra Datatable...

In this article, we will see how to install datatable in laravel 10. Here, we will learn about the laravel 10 yajra data...

Read More

Mar-01-2023

Laravel 10 Livewire Multi Step Form Wizard
Laravel 10 Livewire Multi Step...

Hello developers! Today, I'm excited to walk you through the process of creating a multi-step form wizard using...

Read More

Dec-18-2023

How to Format Number with 2 Decimal in PHP
How to Format Number with 2 De...

Hey there! If you've ever needed to work with numbers in PHP, you probably know how important it is to format them p...

Read More

Feb-26-2024