ctrlpanel/database/factories/PaymentFactory.php
2023-01-05 17:02:37 +00:00

32 lines
771 B
PHP

<?php
namespace Database\Factories;
use App\Models\Payment;
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' => '{}',
];
}
}