---
title: "HTTP Query Method Support in Laravel 13.19"
url: https://daily.dev/posts/http-query-method-support-in-laravel-13-19-lqz2nkd8s
source_url: https://laravel-news.com/laravel-13-19-0
type: article
source: "Laravel News"
published: 2026-07-09T07:49:52.764Z
updated: 2026-07-09T20:21:16.710Z
tags: ["php", "laravel"]
reading_time: 3
upvotes: 28
comments: 4
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# HTTP Query Method Support in Laravel 13.19

**[Laravel News](https://daily.dev/sources/ln)** · 3 min read · 28 upvotes · 4 comments

## Summary

Laravel 13.19.0 introduces several new features: an Http::query() client method for sending HTTP QUERY verb requests with body parameters, plus matching query() and queryJson() testing helpers. A new reduceInto() collection method allows mutating an accumulator in place without returning a value each iteration. The Str::counted() helper pluralizes a word and prepends the count in one call. Queue improvements include bulk SQS dispatching via SendMessageBatch API for fewer API calls, and the queue fake can now inspect reserved jobs for better test assertions. Minor fixes cover soft-delete assertions, mail config, and component attribute merging.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://laravel-news.com/laravel-13-19-0>

## Community discussion

Top comments from developers on daily.dev.

**@jenueldev** · 4 upvotes

> Useful Laravel update.

**@bever123** · 3 upvotes

> Good <3

**@pdfopsdev** · 1 upvotes

> The Http::query() addition is tracking the IETF QUERY draft (draft-ietf-httpbis-safe-method-w-body) — a safe, idempotent method that carries a request body, meant to kill the 'GET with a body' hack people reach for when a search payload is too big for the URL. The catch today is infra support: plenty of reverse proxies, CDNs and WAFs still choke on or silently strip a body from a method they don't recognize, so it's worth probing your edge before leaning on it in production. Nice to see framework client support landing ahead of the infra though.

## Similar posts on daily.dev

- [Build a Laravel Scout Search Endpoint With the HTTP QUERY Method](https://daily.dev/posts/build-a-laravel-scout-search-endpoint-with-the-http-query-method-hgbteipqq) · Laravel News · 2 upvotes · 0 comments
- [Http Client Batch Method in Laravel 12.32](https://daily.dev/posts/http-client-batch-method-in-laravel-12-32-s5s1v5pnx) · Laravel News · 35 upvotes · 0 comments

---

Tags: [#php](https://daily.dev/tags/php), [#laravel](https://daily.dev/tags/laravel)

[View this post on daily.dev](https://daily.dev/posts/http-query-method-support-in-laravel-13-19-lqz2nkd8s)
