結論
\Illuminate\Database\ConnectionInterface
のgetDatabaseName
メソッドを呼ぶ。
DBファサードで呼べる
echo \DB::getDatabaseName();
使い方
テーブル名の一覧を配列で欲しい時に使えます。
$tables = \DB::select('SHOW TABLES');
$name = "Tables_in_" . \DB::getDatabaseName();
$tables = array_map(function ($v) use ($name) {
return $v->{$name};
}, $tables);
dd($tables);