We are deploying a new Laravel 5 installation and our client has said that they are unable to provide a writable directory on the web space that we are running on.
Is there any way that the storage folder can be by-passed when deploying the Laravel installation as I can only see logs and session based data that I am storing in MySQL anyway.
From Laravel official documentation
You could prevent laravel from using the
storage
folder only if you modify the core files of the framework, because this is how laravel is set up to work.I strongly advise you against that. Just migrate to another enviroment and get write permissions for that folder.
I know that this is not a proper solution, but it seems more harmful to your application structure and integrity to do core level modification.