Hello,
you can register the following code at Application Service Provider (App\Providers\AppServiceProvider.php).
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
public function register()
{
    $this->app->bind('path.public', function() {
        return base_path().'/public_http';
    });
}
Hope it works!!
Thank You!!