1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/database/factories/PaymentFactory.php

42 lines
1018 B
PHP
Raw Normal View History

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
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-10-01 07:33:38 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace Database\Factories;
use App\Models\Payment;
2020-10-01 12:49:47 +02:00
use Illuminate\Database\Eloquent\Factories\Factory;
class PaymentFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Payment::class;
2019-05-03 09:57:55 +02:00
2020-10-01 12:49:47 +02:00
/**
* 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,
];
}
}