在 laravel 中获取表前缀的方法

有3种方法:

DB::getConfig('prefix');
DB::connection()->getTablePrefix();
Config::get('database.connections.mysql.prefix');