2020-01-20 02:31:58 +01: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) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
2020-10-01 12:49:47 +02:00
|
|
|
use App\Models\Expense;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
use Illuminate\Support\Str;
|
2020-01-20 02:31:58 +01:00
|
|
|
|
2020-10-01 12:49:47 +02:00
|
|
|
class ExpenseFactory extends Factory
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name of the factory's corresponding model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $model = Expense::class;
|
2020-01-20 02:31:58 +01:00
|
|
|
|
2020-10-01 12:49:47 +02:00
|
|
|
/**
|
|
|
|
* 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),
|
2020-10-13 06:14:13 +02:00
|
|
|
'date' => $this->faker->date(),
|
2020-10-01 12:49:47 +02:00
|
|
|
'is_deleted' => false,
|
|
|
|
'public_notes' => $this->faker->text(50),
|
|
|
|
'private_notes' => $this->faker->text(50),
|
|
|
|
'transaction_reference' => $this->faker->text(5),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|