Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124


By default Laravel uses MySQL however we can connect any database like PostgreSQL. Changing default database that is from MYSQL to PostgreSQL is very simple.
Laravel makes connecting with PostgreSQL and running queries extremely simple out of the box.1.
https://www.postgresql.org/download/
;extension=pdo_pgsql
;extension=pgsql
Remove semicolon from above line in php.ini and it looks like below.
extension=pdo_pgsql
extension=pgsql
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=database_name
DB_USERNAME=root
DB_PASSWORD=