I'm using the package betterapp\LaravelDbEncrypter
to encrypt some data in the DB.
If something goes wrong and I lose the access to the server, even if I have a back up of the database in a different place, I won't be able to access that data anymore.
What could be the best approach to save a back up of the database, so it can be recovered even if Laravel's app key is not the same anymore?
I was thinking about decrypting all values and saving the backup within a 7z with password. What do you think?