Joshcid's answer is for some, but not all. I found this in my boot file> start.php:
'local' => array('homestead')
... and changing this variable in any way caused my laravel application to not load at all. Not only that, but in the new laravel installation, this local variable had the same value as "homestead".
After spending a little time in WinMerge, I found that you should use Wayne's hint about the change
'redis' => array( 'cluster' => false, 'default' => array( 'host' => 'tunnel.pagodabox.com', 'port' => 6379, 'database' => 0, ), ),
to
'redis' => array( 'cluster' => false, 'default' => array( 'host' => '127.0.0.1', 'port' => 6379, 'database' => 0, ), ),
at the bottom of the app> config> database.php file, you should also go to the top of the app> config> session.php file and change
'driver' => 'redis',
to
'driver' => 'file',
... like a fresh install. Now you can view your application!
source share