I changed my migration file name, updated the class name, ran 'composer dump-autoload' and then ran 'php artisan migrate:reset'.
When I run that I get an error:
[Symfony\Component\Debug\Exception\FatalErrorException] Class 'OldClassName' not found
When I search the entire project for this class name all I find is it mentioned in the error logs. If I go in to 'autoload_classmap.php' the line with my class name and migration file name is correct (I have copied and pasted over them just to make sure).
While Googling it people suggested to run a few other commands which I already have:
php artisan clear-cache
Vagrant reload
composer self-update
composer update
How else should I troubleshoot this?