Don't know about the default isolation level of PDO, but you can always use raw queries to set it yourself. Something like:
$pdo = DB::connection()->getPdo();
$pdo->exec('SET TRANSACTION ISOLATION LEVEL READ COMMITTED');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community