Ajustando permissão do filesystem para laravel em linux apache https://stackoverflow.com/questions/30639174/how-to-set-up-file-permissions-for-laravel Na pasta do laravel sudo chown -R $USER:www-data . sudo find . -type f -exec chmod 664 {} \; sudo find . -type d -exec chmod 775 {} \; sudo chgrp -R www-data storage bootstrap/cache sudo chmod -R ug+rwx storage bootstrap/cache
sudo chown -R $USER:www-data .
sudo find . -type f -exec chmod 664 {} \; sudo find . -type d -exec chmod 775 {} \;
sudo chgrp -R www-data storage bootstrap/cache sudo chmod -R ug+rwx storage bootstrap/cache