How to specify database connection using statement method in Laravel
I am running a raw query on Laravel using DB::statement() method. This statement needs to fetch data from my secondary database.
I wonder if there is any clean way to specify database connection t...