How To Store Record In Diffrent Database In Laravel 8?
Hi Dev,
In this article Laravel how to store record in diffrent database. Sometimes we need multiple databases in our system to work with and laravel is capable of doing this.
You store some records on different database so make this code and store the record.
With no more complexity, in this article is pretty easy to implement you will find the exact changes you want to make in your system.
Let’s start implementing dynamic database connection tutorial laravel.
Please follow steps to integrate the laravel database connection.
Solution
//Store record in first database
User::create($input);
//Store record in different database
$userModel = new User();
$userData = $userModel->setConnection('mysql2')
->create($input);
I hope it will help you...
- How to Notifications With database Driver in Laravel 11?
- How to Send Email Via Notification in Laravel 11?
- How to Install and Configure Laravel 11 Debugbar?
- How to Like Dislike System in Laravel 11?
- How to Paginate a Model with Relationship in Laravel 11?
- Laravel 11 Upload Files to Amazon S3 Example
- Laravel 11 Send WhatsApp Messages Example
- Laravel 11 Rest API Authentication Using JWT Tutorial