$buildMany
Create multiple records in the table at once. The $buildMany method is used to insert multiple entries into the database in a single operation by providing an array of data objects. This method ensures that all data is validated against the schema before saving, making it efficient for batch insert operations.
Last updated