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

47 lines
1.4 KiB
PHP
Raw Normal View History

<?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 Illuminate\Database\Eloquent\Factories\Factory;
2022-06-07 12:36:47 +02:00
use Illuminate\Support\Str;
2020-10-01 12:49:47 +02:00
class VendorFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'name' => $this->faker->name(),
'website' => $this->faker->url(),
2020-10-01 12:49:47 +02:00
'private_notes' => $this->faker->text(200),
'vat_number' => $this->faker->text(25),
'id_number' => $this->faker->text(20),
'custom_value1' => $this->faker->text(20),
'custom_value2' => $this->faker->text(20),
'custom_value3' => $this->faker->text(20),
'custom_value4' => $this->faker->text(20),
'address1' => $this->faker->buildingNumber(),
'address2' => $this->faker->streetAddress(),
'city' => $this->faker->city(),
'state' => $this->faker->state(),
'postal_code' => $this->faker->postcode(),
2020-10-01 12:49:47 +02:00
'country_id' => 4,
2022-06-07 12:36:47 +02:00
'vendor_hash' => Str::random(40),
2023-03-12 21:57:10 +01:00
'currency_id' => 1,
2020-10-01 12:49:47 +02:00
];
}
2020-11-25 15:19:52 +01:00
}