Files
InvoiceShelf/database/factories/CustomFieldValueFactory.php
Darko Gjorgjijoski 6b80b5f48d Change namespace
2024-01-27 23:53:20 +01:00

35 lines
831 B
PHP

<?php
namespace Database\Factories;
use InvoiceShelf\Models\CustomField;
use InvoiceShelf\Models\CustomFieldValue;
use InvoiceShelf\Models\User;
use Illuminate\Database\Eloquent\Factories\Factory;
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,
];
}
}