Skip to content

Instantly share code, notes, and snippets.

@web-hat
Created April 5, 2017 03:20
Show Gist options
  • Save web-hat/a046d15820d903421fc000964d6ed7b4 to your computer and use it in GitHub Desktop.
Save web-hat/a046d15820d903421fc000964d6ed7b4 to your computer and use it in GitHub Desktop.
Multiple DB Connections in Laravel 5
<?php
//create an instance of your model
$objMyModel = new MyModel();
//query for fetching data
$data = $objMyModel->setConnection('mysql_second')
->select('col_1')
->get();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment