I kept searching today for a proper guide on how to deploy my laravel app to a godaddy hosting but no luck so far.. I followed this https://medium.com/@kunalnagar/deploying-laravel-5-on-godaddy-shared-hosting-888ec96f64cd
The problem is that when I open the website I get some weird error from laravel. Check the image. As you can see, laravel is still pointing to my local folder somehow..
I changed the path in the index.php file like so:
require __DIR__.'/../project/bootstrap/autoload.php';
$app = require_once __DIR__.'/../project/bootstrap/app.php';
The 'project' folder is at the same level as public_html folder. What can be the problem here?