My machine is Windows 10, I am running PHP 7.3.12 on Xampp.
I have installed MongoDB extension and added it to php.ini as well.
Now when I run php -m|grep mongo
, it shows MongoDB on the terminal.
When I run php -i
on the terminal, it shows that MongoDB extension is enabled.
However, whenever I load phpinfo()
, it does not show MongoDB extension there.
I installed jenssegers/mongodb
for my laravel7 app.
But the app is showing the following error:
"Class 'MongoDB\\Driver\\Manager' not found"
I have tried almost all the solutions that are suggested so far. Nothing worked.
What am I missing?