Laravel Tutorials

Laravel Uri toStringable Method

Published
Laravel Uri toStringable Method image

The toStringable() method converts URI objects into Stringable instances, providing direct access to Laravel's string manipulation methods.

Previously, applying string transformations to URI objects required wrapping them with Str::of():

Str::of(Uri::of('http://localhost')->withScheme('https'));

The toStringable() method removes this extra step:

use Illuminate\Support\Uri;
 
Uri::of('http://localhost')->withScheme('https')->toStringable();

This maintains method chaining from URI construction through string operations:

$endpoint = Uri::of('http://api-service.com')
->withPath('/users')
->withQuery(['active' => 1, 'limit' => 25])
->toStringable()
->replace('/users', '/v2/users')
->lower()
->toString();

URL formatting for logging shows string method integration:

$logUrl = Uri::of('http://example.com/endpoint')
->withPath('/api/long/path/resource')
->toStringable()
->limit(40, '...')
->toString();
 
$masked = Uri::of('https://api.service.com/users/12345')
->toStringable()
->mask('*', -5, 5)
->toString();

The method provides access to all Stringable operations including case conversion, truncation, replacement, and masking without breaking the method chain or requiring helper function wrapping.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article