Laravel tip:
If you update records while chunking them, be careful with `chunk()`.
Because `chunk()` uses offset pagination, changing the result set during processing can make you skip rows.
Use `chunkById()` when the records can change while processing.