Add test for setting supplier

This commit is contained in:
Too
2018-06-27 23:34:35 +08:00
parent 819da14684
commit 206a637a88
7 changed files with 623 additions and 638 deletions
@@ -4,6 +4,10 @@ use Faker\Generator as Faker;
$factory->define(App\SettingSupplier::class, function (Faker $faker) {
return [
//
'company_name' => $faker->name,
'gst_no' => $faker->unique()->randomDigit,
'supplier_reg_no' => $faker->unique()->randomDigit,
'bank_name' => $faker->name,
'acc_no' => $faker->unique()->randomDigit
];
});