Skip to content

Instantly share code, notes, and snippets.

@flyingluscas
Created November 7, 2016 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flyingluscas/1a6ba813842e98769db8f9c64480fd7c to your computer and use it in GitHub Desktop.
Save flyingluscas/1a6ba813842e98769db8f9c64480fd7c to your computer and use it in GitHub Desktop.
Example
$users = factory(App\User::class, mt_rand(2, 10))->create();

factory(App\Order:class, mt_rand(2, 10))->make()->each(function ($order) use ($users) {
    $order->user()->associate($users->random())->save();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment