superuser()->create(); $this->actingAsForApi($authUser); $license = License::factory()->create(); $oldUser = User::factory()->create(); $licenseSeat = LicenseSeat::factory()->for($license)->create([ 'assigned_to' => $oldUser->id, 'notes' => 'Previously checked out', ]); $payload = [ 'assigned_to' => null, 'asset_id' => null, 'notes' => 'Checking in the seat', ]; $response = $this->patchJson( route('api.licenses.seats.update', [$license->id, $licenseSeat->id]), $payload); $response->assertStatus(200) ->assertJsonFragment([ 'status' => 'success', ]); $licenseSeat->refresh(); $this->assertNull($licenseSeat->assigned_to); $this->assertNull($licenseSeat->asset_id); $this->assertEquals('Checking in the seat', $licenseSeat->notes); } }