actingAs($user = User::factory()->withPersonalOrganization()->create()); $response = $this->put('/teams/'.$user->currentTeam->id, [ 'name' => 'Test Organization', ]); $this->assertCount(1, $user->fresh()->ownedTeams); $this->assertEquals('Test Organization', $user->currentTeam->fresh()->name); } }