define(Contact::class, function (Faker\Generator $faker) { return [ 'client_id' => function() { return factory(Client::class)->create()->id; }, 'user_id' => 1, 'account_id' => 1, 'public_id' => Contact::count() + 1, 'is_primary' => true, 'send_invoice' => true, 'first_name' => $faker->firstName, 'last_name' => $faker->lastName, 'email' => $faker->safeEmail, 'phone' => $faker->phoneNumber, ]; }); $factory->define(Client::class, function (Faker\Generator $faker) { return [ 'user_id' => 1, 'account_id' => 1, 'public_id' => Client::count() + 1, 'name' => $faker->name, 'address1' => $faker->streetAddress, 'address2' => $faker->secondaryAddress, 'city' => $faker->city, 'state' => $faker->state, 'postal_code' => $faker->postcode, 'country_id' => Country::all()->random()->id, ]; });