Skip to content

Commit eeba852

Browse files
authored
Update factory for contact #30
1 parent 0376745 commit eeba852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/factories/ContactFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ public function definition()
2020
'email_address_id' => randomOrCreate(app('email_address')),
2121
'first_name' => $this->faker->firstName,
2222
'last_name' => $this->faker->lastName,
23-
'phone' => randomOrCreate(app('phone')),
2423
'company_name' => $this->faker->company,
24+
'phone_id' => randomOrCreate(app('phone')),
2525
'message' => $this->faker->paragraph,
2626
];
2727
}

0 commit comments

Comments
 (0)