Tente isso
//CRIA TABELA TEMPORÁRIA
$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );
// DELETE TABELA TEMPORÁRIA
$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );
$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );
$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );