[ '*' => self::JSON_STRUCTURE, ], 'links' => [ 'first', 'last', 'prev', 'next', ], 'meta' => [ 'current_page', 'from', 'path', 'per_page', 'to', ], ]; public function testIndex(): void { Artist::factory(10)->create(); $this->getAsUser('api/artists') ->assertJsonStructure(self::JSON_COLLECTION_STRUCTURE); } public function testShow(): void { /** @var Artist $artist */ $artist = Artist::factory()->create(); $this->getAsUser('api/artists/' . $artist->id) ->assertJsonStructure(self::JSON_STRUCTURE); } }