I have a shared hosting service hostinger. as I can upload my laravel 5.2 and configure project?
and I tried using:
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider {
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot() {
//
}
/**
* Register any application services.
*
* @return void
*/
public function register() {
$this->app->bind('path.public', function () {
return base_path() . '/public_html';
});
}
}
but still nothing.