Files
InvoiceShelf/database/factories/CustomFieldValueFactory.php
2024-01-29 04:46:01 -06:00

35 lines
830 B
PHP

<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use InvoiceShelf\Models\CustomField;
use InvoiceShelf\Models\CustomFieldValue;
use InvoiceShelf\Models\User;
class CustomFieldValueFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = CustomFieldValue::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'custom_field_valuable_type' => $this->faker->name,
'custom_field_valuable_id' => 1,
'type' => $this->faker->name,
'custom_field_id' => CustomField::factory(),
'company_id' => User::find(1)->companies()->first()->id,
];
}
}