The config function gets the value of a configuration variable. The configuration values may be accessed using "dot" syntax, which includes the name of the file and the option you wish to access. A default value may be specified and is returned if the configuration option does not exist:
$value config('app.timezone');

$value config('app.timezone'$default);
            ->subject(Lang::get('Reset Password Notification'))

            ->
line(Lang::get('You are receiving this email because we received a password reset request for your account.'))

            ->
action(Lang::get('Reset Password'), $url)

            ->
line(Lang::get('This password reset link will expire in :count minutes.', ['count' => config('auth.passwords.'.config('auth.defaults.passwords').'.expire')]))

            ->
line(Lang::get('If you did not request a password reset, no further action is required.'));

    }
        $expressionSpacing $this->getCronExpressionSpacing($events);



        
$timezone = new DateTimeZone($this->option('timezone') ?? config('app.timezone'));



        
$events $events->map(function ($event) use ($terminalWidth$expressionSpacing$timezone) {

            
$expression $this->formatCronExpression($event->expression$expressionSpacing);
            'PHP Version' => phpversion(),

            
'Composer Version' => $this->composer->getVersion() ?? '<fg=yellow;options=bold>-</>',

            
'Environment' => $this->laravel->environment(),

            
'Debug Mode' => config('app.debug') ? '<fg=yellow;options=bold>ENABLED</>' 'OFF',

            
'Application Name' => config('app.name'),

            
'URL' => Str::of(config('app.url'))->replace(['http://''https://'], ''),

            
'Maintenance Mode' => $this->laravel->isDownForMaintenance() ? '<fg=yellow;options=bold>ENABLED</>' 'OFF',
            'Composer Version' => $this->composer->getVersion() ?? '<fg=yellow;options=bold>-</>',

            
'Environment' => $this->laravel->environment(),

            
'Debug Mode' => config('app.debug') ? '<fg=yellow;options=bold>ENABLED</>' 'OFF',

            
'Application Name' => config('app.name'),

            
'URL' => Str::of(config('app.url'))->replace(['http://''https://'], ''),

            
'Maintenance Mode' => $this->laravel->isDownForMaintenance() ? '<fg=yellow;options=bold>ENABLED</>' 'OFF',

        ]);
            'Environment' => $this->laravel->environment(),

            
'Debug Mode' => config('app.debug') ? '<fg=yellow;options=bold>ENABLED</>' 'OFF',

            
'Application Name' => config('app.name'),

            
'URL' => Str::of(config('app.url'))->replace(['http://''https://'], ''),

            
'Maintenance Mode' => $this->laravel->isDownForMaintenance() ? '<fg=yellow;options=bold>ENABLED</>' 'OFF',

        ]);
            'Views' => $this->hasPhpFiles($this->laravel->storagePath('framework/views')) ? '<fg=green;options=bold>CACHED</>' '<fg=yellow;options=bold>NOT CACHED</>',

        ]);



        
$logChannel config('logging.default');

        
$logChannelDriver config('logging.channels.'.$logChannel.'.driver');



        if (
$logChannelDriver === 'stack') {
        ]);



        
$logChannel config('logging.default');

        
$logChannelDriver config('logging.channels.'.$logChannel.'.driver');



        if (
$logChannelDriver === 'stack') {

            
$secondary collect(config('logging.channels.'.$logChannel.'.channels'))
        $logChannelDriver config('logging.channels.'.$logChannel.'.driver');



        if (
$logChannelDriver === 'stack') {

            
$secondary collect(config('logging.channels.'.$logChannel.'.channels'))

                ->
implode(', ');



            
$logs '<fg=yellow;options=bold>'.$logChannel.'</> <fg=gray;options=bold>/</> '.$secondary;
        }



        static::
add('Drivers'array_filter([

            
'Broadcasting' => config('broadcasting.default'),

            
'Cache' => config('cache.default'),

            
'Database' => config('database.default'),

            
'Logs' => $logs,
        static::add('Drivers'array_filter([

            
'Broadcasting' => config('broadcasting.default'),

            
'Cache' => config('cache.default'),

            
'Database' => config('database.default'),

            
'Logs' => $logs,

            
'Mail' => config('mail.default'),
        static::add('Drivers'array_filter([

            
'Broadcasting' => config('broadcasting.default'),

            
'Cache' => config('cache.default'),

            
'Database' => config('database.default'),

            
'Logs' => $logs,

            
'Mail' => config('mail.default'),

            
'Octane' => config('octane.server'),
            'Cache' => config('cache.default'),

            
'Database' => config('database.default'),

            
'Logs' => $logs,

            
'Mail' => config('mail.default'),

            
'Octane' => config('octane.server'),

            
'Queue' => config('queue.default'),

            
'Scout' => config('scout.driver'),
            'Database' => config('database.default'),

            
'Logs' => $logs,

            
'Mail' => config('mail.default'),

            
'Octane' => config('octane.server'),

            
'Queue' => config('queue.default'),

            
'Scout' => config('scout.driver'),

            
'Session' => config('session.driver'),
            'Logs' => $logs,

            
'Mail' => config('mail.default'),

            
'Octane' => config('octane.server'),

            
'Queue' => config('queue.default'),

            
'Scout' => config('scout.driver'),

            
'Session' => config('session.driver'),

        ]));
            'Mail' => config('mail.default'),

            
'Octane' => config('octane.server'),

            
'Queue' => config('queue.default'),

            
'Scout' => config('scout.driver'),

            
'Session' => config('session.driver'),

        ]));

    }