Laravel - Configuration and Environment
Given the config file
What will
config/database.php contains:return [
'default' => 'mysql',
'connections' => [
'mysql' => [
'host' => '127.0.0.1',
'port' => 3306
]
]
];What will
config('database.connections.mysql.port') return?