I have statusUpdate.php file in the xampp\\htdocs\\project\\app\\Console\\Commands folder.
statusUpdate.php :
Well. I am giving you the answer as per what you have said.
Cron job command is like this :
php /path/to/artisan schedule:run 1>> /dev/null 2>&1
The path should be locating the artisan file in the server. Like this:
Let's say your artisan file location is /var/www/artisan, then the simple answer could be do like this:
php /var/www/artisan schedule:run 1>> /dev/null 2>&1
Just check if that works. Thank You!
UPDATE:

This is how it should look like.