2019-05-03 09:57:55 +02:00
|
|
|
<?php
|
2020-10-01 07:33:38 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-01 07:33:38 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-01 07:33:38 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-10-01 07:33:38 +02:00
|
|
|
namespace Database\Factories;
|
|
|
|
|
2019-08-19 08:50:33 +02:00
|
|
|
use App\Models\Payment;
|
2020-10-01 12:49:47 +02:00
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
class PaymentFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
return [
|
|
|
|
'is_deleted' => false,
|
|
|
|
'amount' => $this->faker->numberBetween(1, 10),
|
|
|
|
'date' => $this->faker->date(),
|
|
|
|
'transaction_reference' => $this->faker->text(10),
|
|
|
|
'type_id' => Payment::TYPE_CREDIT_CARD,
|
|
|
|
'status_id' => Payment::STATUS_COMPLETED,
|
2023-10-26 04:37:03 +02:00
|
|
|
'currency_id' => 1,
|
2020-11-25 15:19:52 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|