I have a problem when deploy website build on laravel 5 into VPS server, but on local machine it work fine.
My page is http://easyway.vn/ current page display blank
this error appears when you rename the public folder.
Never edit files in vendor folder. After composer update or fresh install you will lose your changes.
A better solution is to edit bootstrap/app.php and place this snippet before the return statement.
$app->bind('path.public', function() {
return base_path() . '/web';
});