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

32 lines
673 B
PHP

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