laravel 5 on shared hosting wrong public path

Solutions on MaxInterview for laravel 5 on shared hosting wrong public path by the best coders in the world

showing results for - "laravel 5 on shared hosting wrong public path"
Luca
19 Jan 2020
1//Add this to index.php file
2App::bind('path.public', function() {
3    return base_path().'/public_html';
4});
5
similar questions