提问人:Kumi Kwasi 提问时间:10/3/2023 更新时间:10/3/2023 访问量:12
有没有办法使用 Laravel Faker 为 Department and Course 生成合适的内容?
Is there a way to generate A proper content for Department and Course Using Laravel Faker?
问:
我创建了一个 Laravel 学生表。我需要插入一个包含以下表列的虚拟数据 名字 电子邮件 部门 课程
为电子邮件和名称生成适当的虚假数据很容易。但是我无法获得部门和课程的适当数据。现在我只能生成一些看起来不像部门和学习课程的文本。
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\Student>
*/
class StudentFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition(): array
{
return [
'name' => fake()->name(),
'email' => fake()->unique()->safeEmail(),
'department' => fake()->realText($maxNbChars = 20),
'course' => fake()->realText($maxNbChars = 20)
];
}
}
我尝试创建适当的数据
答: 暂无答案
上一个:尊重验证器可选和断言
评论