1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 05:32:39 +01:00
invoiceninja/database/factories/InvoiceFactory.php

27 lines
751 B
PHP
Raw Normal View History

2019-04-04 01:17:15 +02:00
<?php
use Faker\Generator as Faker;
2019-04-04 01:30:49 +02:00
$factory->define(App\Models\Invoice::class, function (Faker $faker) {
2019-04-04 01:17:15 +02:00
return [
2019-04-04 01:30:49 +02:00
'invoice_status_id' => App\Models\Invoice::STATUS_PAID,
'invoice_number' => 'abc-123',
'discount' => $faker->numberBetween(1,10),
'is_amount_discount' => $faker->boolean(),
'tax_name1' => 'GST',
'tax_rate1' => 10,
'tax_name2' => 'VAT',
'tax_rate2' => 17.5,
'custom_value1' => $faker->text(20),
'custom_value2' => $faker->text(20),
'custom_value3' => $faker->text(20),
'custom_value4' => $faker->text(20),
'is_deleted' => false,
'po_number' => $faker->text(10),
'invoice_date' => $faker->date(),
'due_date' => $faker->date(),
'line_items' => false,
'options' => '',
'backup' => '',
2019-04-04 01:17:15 +02:00
];
2019-04-04 01:30:49 +02:00
});