I'm trying to find the php.ini file located for Laravel applications, I have a form with more than 1000 inputs I'm trying to change the maximum number of inputs.
CodePudding user response:
You can use phpinfo() function to check where the php.ini file is located at:
<?php
phpinfo();
Or simply run php artisan tinker in the terminal where the laravel project is and then run phpinfo() in same terminal.
Then, look for Configuration File (php.ini) Path in the output of phpinfo().
