From 972bedeecbf1db8c7a6174a6fd103960501350fb Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 7 Oct 2019 17:39:05 +1100 Subject: [PATCH] Remove show_currency_symbol --- database/factories/ClientFactory.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/database/factories/ClientFactory.php b/database/factories/ClientFactory.php index 7ff7106c6092..4abdcfd9bb10 100644 --- a/database/factories/ClientFactory.php +++ b/database/factories/ClientFactory.php @@ -15,7 +15,8 @@ $factory->define(App\Models\Client::class, function (Faker $faker) { 'id_number' => $faker->text(20), 'custom_value1' => $faker->text(20), 'custom_value2' => $faker->text(20), - 'payment_terms' => 1, + 'custom_value3' => $faker->text(20), + 'custom_value4' => $faker->text(20), 'address1' => $faker->buildingNumber, 'address2' => $faker->streetAddress, 'city' => $faker->city,