Skip to content

Instantly share code, notes, and snippets.

@kevinruscoe
Created January 4, 2019 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinruscoe/5996a6c39bb9b4d4a5f0b4602beeaced to your computer and use it in GitHub Desktop.
Save kevinruscoe/5996a6c39bb9b4d4a5f0b4602beeaced to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Middleware;
use Closure;
use Config;
class ConnectToCorrectDatabase
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$databaseSettings = Config::get('database.connections.mysql');
$databaseSettings['username'] = 'test';
Config::set("database.connections.mysql", $databaseSettings);
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment