Transform HTTP Response Data with Laravel's Fluent Method
Transform HTTP response data effortlessly with Laravel's new fluent() method. This addition to the HTTP Client brings type-safe access to your API responses.
Basic Usage
Convert your HTTP responses to fluent instances:
$response = Http::get('https://api.example.com/products/1')->fluent();
$price = $response-&