Prueba esto
// CREAR TABLA TEMPORAL
$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );
// ELIMINAR TABLA TEMPORAL
$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );
Prueba esto
// CREAR TABLA TEMPORAL
$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );
// ELIMINAR TABLA TEMPORAL
$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );