Essayez ceci
// CRÉER UNE TABLE TEMPORAIRE
$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );
// SUPPRIMER LA TABLE TEMPORAIRE
$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );
Essayez ceci
// CRÉER UNE TABLE TEMPORAIRE
$productList = DB::insert( DB::raw( "CREATE TEMPORARY TABLE tempproducts") );
// SUPPRIMER LA TABLE TEMPORAIRE
$dropTable = DB::unprepared( DB::raw( "DROP TEMPORARY TABLE tempproducts" ) );