Typically these files are small and manageable, but there are times when you run into situations where you duplicate the same data within the file. Here is an example:
MAIL_USERNAME=hello@laravel-news.com
MAIL_FROM_ADDRESS=hello@laravel-news.com
The dotenv package that Laravel relies on can use variables with other defined variables in this same file. For example:MAIL_USERNAME=hello@laravel-news.com
MAIL_FROM_ADDRESS=${MAIL_USERNAME}
Granted this file isn’t usually crazy long or complicated, but this
simple trick allows you not to repeat yourself and can be useful when
you have multiple services requiring the same piece of data.
No comments:
Post a Comment