We also need to set correct permissions for storage files in the server. So, we need to give a write permission in the storage directory as follows:
$ chmod -R 777 ./storage ./bootstrap
or you may use
$ sudo chmod -R 777 ./storage ./bootstrap
For windows
Make sure you are an admin user on t...