faker->date; $date_to = $this->faker->date; $user = User::factory() ->create(); $response = $this->actingAs($user)->getJson(route('v2.safety_and_privacy.report.map', [ 'date_from' => $date_from, 'date_to' => $date_to ])); $response->assertStatus(200) ->assertJsonStructure([ 'status', 'count', 'message', 'data' ]); } }