Laravel 获取数据库表前缀

提供获取数据库表前缀的三种方法:

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