How to add a literal quote in Laravel's .env file?

Viewed 6992

I'd like to add a string value to my .env file that contains quotes like so.

APP_NAME="Hacking"

Laravel assumes the quotes are being used to define the string, but I want the literal quote in the string.

I've also tried the following.

APP_NAME='"Hacking"'

APP_NAME=\"Hacking\"

APP_NAME="\"Hacking\""
1 Answers
Related