Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 23, 2018 14:00
Show Gist options
  • Save uno-de-piera/7d4936bf6b982d6071df0d11f9b3c905 to your computer and use it in GitHub Desktop.
Save uno-de-piera/7d4936bf6b982d6071df0d11f9b3c905 to your computer and use it in GitHub Desktop.
<?php
factory(App\User::class, 30)->create()->each(function($user) {
factory(App\Post::class, rand(1, 10))->create(['user_id' => $user->id]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment