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
it means that your Laravel Application Can't Find the public folder.
I got it to work by
changing :
chdir($this->laravel->publicPath());
in :
vendor/laravel/framework/src/Illuminate/Foundation/Console/ServeCommand.php
To :
chdir('/');