31 lines
628 B
PHP
31 lines
628 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Contact;
|
|
use App\Models\Pet;
|
|
use App\Models\PetCategory;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Pet>
|
|
*/
|
|
class PetFactory extends Factory
|
|
{
|
|
protected $model = Pet::class;
|
|
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'pet_category_id' => PetCategory::factory(),
|
|
'contact_id' => Contact::factory(),
|
|
'name' => $this->faker->name(),
|
|
];
|
|
}
|
|
}
|