After fresh installation of Laravel 5.1, it was not showing up the welcome page. Further investigating into this issue revealed that “storage” directory is not writable.
To make storage directory writable run following commands
1 2 |
find storage -type d -exec chmod 777 {} \; |
Then run:
1 |
find storage -type f -exec chmod 777 {} \; |