Laravel-5-on-shared-hosting-wrong-public-path

//Add this to index.php file
App::bind('path.public', function() {
    return base_path().'/public_html';
});
Flashmaru