unsa-pis-be/database/factories/EstandarFactory.php

26 lines
472 B
PHP
Raw Permalink Normal View History

2022-08-02 04:44:21 +00:00
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Estandar>
*/
class EstandarFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition()
{
return [
'name' => $this->faker->name(),
'id_user' =>$this,
];
}
}