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

40 lines
1.1 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://www.elastic.co/licensing/elastic-license
2020-10-01 07:33:38 +02:00
*/
2020-10-01 07:33:38 +02:00
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
{
/**
* 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),
2020-10-01 12:49:47 +02:00
'custom_value3' => $this->faker->text(20),
'custom_value4' => $this->faker->text(20),
'is_deleted' => false,
];
}
2020-11-25 15:19:52 +01:00
}