| 1 |
<?php |
| 2 |
|
| 3 |
namespace App\Billingo\Factories; |
| 4 |
|
| 5 |
class LedgerNumberInformationFactory extends BaseFactory |
| 6 |
{ |
| 7 |
|
| 8 |
public function definition(): array |
| 9 |
{ |
| 10 |
return [ |
| 11 |
'bevetel' => $this->faker->optional()->word(), |
| 12 |
'vevo' => $this->faker->optional()->word(), |
| 13 |
'penztar' => $this->faker->optional()->word(), |
| 14 |
'afa' => $this->faker->optional()->word(), |
| 15 |
]; |
| 16 |
} |
| 17 |
} |
| 18 |
|