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

31 lines
591 B
PHP

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