Laravel - Configuration and Environment
Given the config file
And the environment variable
config/mail.php contains:return [
'driver' => env('MAIL_DRIVER', 'smtp'),
'host' => env('MAIL_HOST', 'smtp.mailtrap.io'),
];And the environment variable
MAIL_DRIVER is set to sendmail, what will config('mail.driver') return?