Error in exception handler: The stream or file "/var/www/laravel/storage/logs/laravel.log" could not be opened in append mode: failed to open stream: Permission denied
Disable SElinux :
$ setenforce PermissiveOR$ sudo setenforce 0Also you need to adjust the permissions of storage and bootstrap/cache.sudo chmod -R 755 storagesudo chmod -R 755 bootstrap/cache
You can try 777 if 755 doesn't work. 777 is not secure though!