Skip to content

Instantly share code, notes, and snippets.

@5a494d
Created February 11, 2018 04:27
Show Gist options
  • Save 5a494d/3128dfe2e80e78a3bcc56430cc31123a to your computer and use it in GitHub Desktop.
Save 5a494d/3128dfe2e80e78a3bcc56430cc31123a to your computer and use it in GitHub Desktop.

// 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';
    });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment