I would need to emulate a sequence on MySql.
As explained in this answer Emulating a transaction-safe SEQUENCE in MySQL
I need to run two queries in the same session.
UPDATE sequence SET seq_current = (@next := seq_current + 1) WHERE seq_name = 'foo';
SELECT @next;
How can I do it with Eloquent?