create([ "id" => 0, 'name' => 'Root User', 'email' => 'test@example.com', 'is_root_user' => true, ]); User::factory()->create([ 'name' => 'Normal User', 'email' => 'test2@example.com', ]); } }