I\'m reading some configurables from my .env file. These configurables are used in various places within the project. A few times i\'ve received an exception that one of the env
That's not really a Laravel error.
You should set a default date.timezone in your php.ini file, that will take care of your warning.
date.timezone
On top of that, instead of doing the ini_set in your AppServiceProvider, use
'timezone' => env('TIMEZONE', '[whatever default value you want]'),
in config/app.php
config/app.php