Skip to content

Instantly share code, notes, and snippets.

@BinaryKitten
Created May 12, 2020 14:46
Show Gist options
  • Save BinaryKitten/6721a937cad7a74e0301768a3278aaaf to your computer and use it in GitHub Desktop.
Save BinaryKitten/6721a937cad7a74e0301768a3278aaaf to your computer and use it in GitHub Desktop.
<?php
$users = \App\Models\User::all();
factory(Person::class, 10)
->create()
->each(
static function (Person $person) use ($users) {
$person->user_id = $users->random()->first()->id;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment