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

32 lines
666 B
PHP

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