How to search for the file name on the project directory?


Use find command as shown below:

// . is  a current directory
// -i case insensitive
cd /var/www/yourproject
find . -iname WhereController.php


Done!