As @Rajib pointed out, You can't access your env variables using config('myVariable')
config
directory. I usually add to config/app.php
Config::get('fileWhichContainsVariable.Variable');
using the Config
FacadeProbably You will have to clear config cache using php artisan config:clear
AND
you will also have to restart server.