So, a company I'm doing work with wanted a quick solution that I wound up building in Laravel 5. Unfortunately, I found out later that they are very set on hosting it through their GoDaddy shared hosting account and I can't talk them out of it.
The GoDaddy plan they have doesn't allow me to ssh into the box, the only options I have are to ftp my files in and use a few - very limited - c-pannel options.
I have been able to upload all the files and point the document directory to the /public folder in Laravel.
With no changes at all i can see that the initial '/' view is rendering correctly. It goes through my Route::get('/', PageController@index) just fine and even interfaces with the mysql database to return results back to that page - basically meaning the app is functioning exactly as I would expect so far.
However any other route other than the base '/' route will come back with a 500 server error from GoDaddy, not from the laravel app.
Obviously the code functions just fine in homestead, and there is no way for me to look at the error logs.
I've tried a few tutorials that have me mess with the .htaccess file and change the file bath for the bootstrap/autoload.php and app.php files but that didn't seem to help at all.
Any ideas would be greatly appreciated.