Trying to set up a little Vagrant development environment right now using the Laravel framework and need to make my /vagrant/storage/views folder writeable, but I cannot get the permissions on the folder to change no matter what!
I have done:
sudo chmod -R 777 /vagrant/storage/views
...and still am left with rwxr-xr-x permissions on that folder afterwards. I can change permissions of files, but not folders within my /vagrant folder.
Anyone have any ideas on how to solve this? Thanks.