feat: pint

This commit is contained in:
Bob Molitor
2025-10-31 13:38:00 +01:00
parent a6a37f189c
commit 2845c7472e
3 changed files with 2 additions and 5 deletions
+2 -3
View File
@@ -16,8 +16,8 @@ class CompanyFactory extends Factory
public function definition(): array
{
return [
'name' => $this->faker->unique()->company() . ' ' . Str::upper(Str::random(3)),
'legal_name' => $this->faker->company() . ' AG',
'name' => $this->faker->unique()->company().' '.Str::upper(Str::random(3)),
'legal_name' => $this->faker->company().' AG',
'ticker' => Str::upper($this->faker->lexify('???')),
'sector' => $this->faker->randomElement(['Finance', 'Technology', 'Energy']),
'country' => $this->faker->randomElement(['DE', 'AT', 'CH']),
@@ -32,4 +32,3 @@ class CompanyFactory extends Factory
return $this->state(fn () => ['kyc_risk_level' => 'high']);
}
}
@@ -48,4 +48,3 @@ class TransactionFactory extends Factory
return $this->state(fn () => ['status' => $status]);
}
}