Laravel 9 Multiple Database Connections Example Tutorial

Laravel 9 Multiple Database Connections Example Tutorial

In this tutorial, we will tell you how to connect multiple databases with the Laravel Framework (Laravel 9 multiple database connections example tutorial). so we will learn to you how to connect multiple MySQL databases with laravel in this tutorial.

The laravel can easily handle the multiple databases and so we can easily access the multiple databases in the laravel. normally we handle a single database connection with Mysql and MongoDB. but we have a large amount of data. that handle for we have to need multiple database connections.

Let’s go we follow the below steps for how to connect multiple databases with laravel application.

Overview

Step 1: Setting Database Configuration
Step 2: Use the Env variable
Step 3: Create Table using Custom connection migration
Step 4: How can use with Model and Controller
Step 5: How can use with Query Builder

Step 1: Setting Database Configuration

we will open the .env file and set the first database and second database credentials detail in the .env file. See below changes in a .env file.

Step 2: Use the Env variable

Now, we will use the constant env variable in database.php file. so see below code.

Step 3: Create Table using Custom connection migration

we can easily create the table using the custom connection migration. but here we have to set the particular connection name then we can create the custom migration.

Step 4: How can use with Model and Controller

Student.php

StudentController.php

Step 5: How can use with Query Builder

Please follow and like us: