2021-08-24 03:23:53 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2022-06-08 06:25:44 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-08-24 03:23:53 +02:00
|
|
|
*/
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
|
|
|
use App\Models\RecurringExpense;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
|
|
|
|
class RecurringExpenseFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name of the factory's corresponding model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $model = RecurringExpense::class;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define the model's default state.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function definition()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'amount' => $this->faker->numberBetween(1, 10),
|
|
|
|
'custom_value1' => $this->faker->text(10),
|
|
|
|
'custom_value2' => $this->faker->text(10),
|
|
|
|
'custom_value3' => $this->faker->text(10),
|
|
|
|
'custom_value4' => $this->faker->text(10),
|
|
|
|
'exchange_rate' => $this->faker->randomFloat(2, 0, 1),
|
|
|
|
'date' => $this->faker->date(),
|
|
|
|
'is_deleted' => false,
|
|
|
|
'public_notes' => $this->faker->text(50),
|
|
|
|
'private_notes' => $this->faker->text(50),
|
|
|
|
'transaction_reference' => $this->faker->text(5),
|
|
|
|
'invoice_id' => null,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|