Hi! I'd like to batch my inserts with a factory, like this example I found on github:
User::insert(
User::factory()->count(100)->make()->toArray();
);
but that would not fire HasUuid events to fill out the uuid column on the model I am inserting into, is there a way to do both? or do I have to manually generate the UUIDs myself and insert them this way?..
Thank you!