Below is how to use Facade for search table data with pagination in Laravel.
DB::table('customers')->paginate(15);
but it can be use just a DB,
So how to use several DB in Facade sentence?
I wish to use DB as divide as read and write DB or direct access in single sentence.
Thank you in advenced.
First of all you have to specify configuration for your databases in
.env
:and
project.dev/config/database.php
:Then you can use method
setConnection
like that: