Hi I am new to laravel in my app when i connecting database i got following error
SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo failed: Name or service not known
public function createConnection($dsn, array $config, array $options)
{
$username = array_get($config, 'username');
$password = array_get($config, 'password');
**return new PDO($dsn, $username, $password, $options);**
}
'mysql' => array(
'driver' => 'mysql',
'host' => 'HOST NAME',
'port' => '3306',
'database' => 'DBNAME',
'username' => 'DBUSER',
'password' => 'DBPASSWORD',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => 'vox_',
),
app/config/database.php
(excluding the password of course). – Bogdan