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

32 lines
673 B
PHP

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