forked from aslan/applicant-site
21 lines
441 B
PHP
21 lines
441 B
PHP
|
<?php
|
||
|
|
||
|
namespace Database\Factories;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
||
|
|
||
|
class EntranceExaminationFactory extends Factory
|
||
|
{
|
||
|
public function definition(): array
|
||
|
{
|
||
|
return [
|
||
|
'examination_type_id' => 1,
|
||
|
'direction_id' => 1,
|
||
|
'subject_id' => 1,
|
||
|
'scores' => 45,
|
||
|
'position' => fake()->randomDigit(),
|
||
|
'subject_type_id' => 1,
|
||
|
];
|
||
|
}
|
||
|
}
|