I have the following issue when trying to install Laravel http://laravel.com
Any help, would be greatly appreciated.
Unhandled Exception
check the permissions of /storage directory in the laravel installation. The views directory must have write permisison for the webserver that is it.
As you can see in the very good documentation under install, you have to make the directory storage/views writeable.
http://laravel.com/docs/install#installation
Although it’s an old question but I hope this might help someone, here is what solved the problem for me.
sudo chmod -R 754 storage/
I would check that the permissions on:
/Users/alvincrespo/Sites/apollo/storage/views/26bdebca7505781c753aa21663170a1b
Allow your application to write to this directory.
Assuming you are on a linux box you could run ls -l to see what the permissions are, and if it is set to read only, change the permissions with chmod.