// file // app/Providers/AppServiceProvider.php // replace on function
/**
* Register any application services.
*
* @return void
*/
public function register()
{
// for shared hosting
$this->app->bind('path.public', function() {
return base_path().'/public_html';
});
}