Browse Source

Merge pull request #56 from andrewdwallo/development-3.x

Mute events for Transaction creation
3.x
Andrew Wallo 1 year ago
parent
commit
082fb995cb
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      database/factories/UserFactory.php

+ 1
- 1
database/factories/UserFactory.php View File

@@ -91,7 +91,7 @@ class UserFactory extends Factory
91 91
 
92 92
                     TransactionFactory::new()
93 93
                         ->count(2000)
94
-                        ->create([
94
+                        ->createQuietly([
95 95
                             'company_id' => $company->id,
96 96
                             'bank_account_id' => $defaultBankAccount?->id,
97 97
                             'created_by' => $user->id,

Loading…
Cancel
Save