has(Contact::factory(5)) ->has(PackingSlip::factory(30)) ->has(ShippingEntry::factory(2)) ->create(); Customer::factory([ 'company_name' => 'Genumark', 'internal_name' => 'genumark', 'shipping_address' => '', 'billing_address' => '', ]) ->has(Contact::factory([ 'first_name' => 'Tammy', 'last_name' => 'Bookbinder', 'email' => 'tbookbinder@genumark.com' ])) ->has(Contact::factory([ 'first_name' => 'Kathlyn', 'last_name' => 'Wood', 'email' => 'kwood@genumark.com' ])) ->has(PackingSlip::factory(20)) ->has(ShippingEntry::factory([ 'account_title' => 'Genumark', 'courier' => 'UPS CampusShip', 'contact' => 'https://www.ups.com/lasso/login', 'account_username' => 'GenumarkTopNotch', 'account_password' => 'TopNotch@13579', 'info_needed' => 'Put PO on box', 'notify' => 'CC Kathlyn Wood', 'notes' => 'For Save On Foods orders, see Genumark SOF' ])) ->create(); User::factory()->create([ 'name' => 'Test User', 'email' => 'test@example.com', ]); } }