Laravel - Database Basics and Migrations
Given this factory definition snippet, what will
User::factory()->make() produce?
public function definition()
{
return [
'name' => fake()->name(),
'email' => fake()->unique()->safeEmail(),
'age' => 25
];
}