create(); $response = $this->actingAs($user)->getJson(route('provinces.list')); Province::factory()->count(3)->create(); $response->assertOk(); $response->assertJsonStructure([ 'data' => [ '*' => [ 'id', 'name' ], ] ]); } }