mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace Database\Factories;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class ProductFactory extends Factory
|
|
{
|
|
/**
|
|
* 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),
|
|
'custom_value1' => 'https://picsum.photos/200',
|
|
'custom_value2' => rand(0, 100),
|
|
'custom_value3' => $this->faker->text(20),
|
|
'custom_value4' => $this->faker->text(20),
|
|
'is_deleted' => false,
|
|
'tax_id' => 1,
|
|
];
|
|
}
|
|
}
|