I'm trying to upload my laravel project to cPanel. But till now, it doesn't seems to be working. I have moved following directories and files from my project into the directory 'lavravel' in root.
app/
bootstrap/
config/
database/
resources/
storage/
artisan
composer.json
composer.lock
.env
And moved files from my public folder to public_html
Now my directory looks like this.

I have made changes in following files. laravel/bootstrap/app.php
/*
|--------------------------------------------------------------------------
| Public Path
|--------------------------------------------------------------------------
|
| Set the path to the Laravel "public" directory so that any files/packages
| that use app('path.public') to get the "public" path find the right path.
| DO NOT include a trailing slash on the path.
|
*/
$app->bind('path.public', function ()
{
return __DIR__.'/../../public_html';
});
public_html/index.php
require __DIR__.'/../laravel/bootstrap/autoload.php';
$app = require_once __DIR__.'/../laravel/bootstrap/app.php';
But, it doesn't seems to work. It displays a blank page. As you can see via this URL. nepalride.com