123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Database\Factories;
- use App\Models\User;
- use Illuminate\Database\Eloquent\Factories\Factory;
- use Illuminate\Support\Str;
- class PaymentFactory extends Factory
- {
- /**
- * Define the model's default state.
- *
- * @return array
- */
- public function definition()
- {
- return [
- 'payment_id' => Str::random(30),
- 'payer_id' => Str::random(30),
- 'user_id' => User::factory(),
- 'type' => 'Credits',
- 'status' => 'Completed',
- 'amount' => $this->faker->numberBetween(10, 10000),
- 'price' => $this->faker->numerify('##.##'),
- 'currency_code' => ['EUR', 'USD'][rand(0, 1)],
- 'payer' => '{}',
- ];
- }
- }
|