1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/database/factories/ProductFactory.php

52 lines
1.4 KiB
PHP
Raw Normal View History

2019-04-03 02:09:22 +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;
2020-10-01 12:49:47 +02:00
use App\Models\Product;
use Illuminate\Database\Eloquent\Factories\Factory;
2019-04-03 02:09:22 +02:00
2020-10-01 12:49:47 +02:00
class ProductFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Product::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'product_key' => $this->faker->text(7),
'notes' => $this->faker->text(20),
'cost' => $this->faker->numberBetween(1, 1000),
'price' => $this->faker->numberBetween(1, 1000),
'quantity' => $this->faker->numberBetween(1, 100),
2021-04-27 12:38:34 +02:00
// 'tax_name1' => 'GST',
// 'tax_rate1' => 10,
// 'tax_name2' => 'VAT',
// 'tax_rate2' => 17.5,
// 'tax_name3' => 'THIRDTAX',
// 'tax_rate3' => 5,
2020-10-01 12:49:47 +02:00
'custom_value1' => $this->faker->text(20),
'custom_value2' => $this->faker->text(20),
'custom_value3' => $this->faker->text(20),
'custom_value4' => $this->faker->text(20),
'is_deleted' => false,
];
}
2020-11-25 15:19:52 +01:00
}