What is the expected behaviour of the built-in Laravel encryption?
I’m using the encryption built-into Laravel by casting an attribute as ‘encrypted’ in a model. My understanding is that the attribute will be encrypted when storing (create and update) and decrypted when retrieved.
Is this encryption/decryption setup in Laravel reliable?
I setup encryption using a trait and a key manager (using chatGPT).
Is this encryption/decryption setup in Laravel OK?
I setup encryption using a trait and a key manager (using chatGPT).