Laravel: How to access config/Mail variables
I think you can directly access MAIL_NAME from .env
env('MAIL_NAME');
OR
Config::get('mail.from.name');
Hope this work for you !!!
this is the shortest method i know using helper methods :
config('mail.from.name')
or you can access it using your .env file with env('MAIL_NAME')