Laravel 9 Guzzle Http Request Example, Http::get,Http::post,ttp::put, Http::delete (ok)

C:\xampp\htdocs\test\routes\web.php

<?php
use App\Http\Controllers\PostController;
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
 */
Route::get('/', function () {
  return view('welcome');
});
Route::get('posts', [PostController::class, 'index']);
Route::get('posts/store', [PostController::class, 'store']);
Route::get('posts/update', [PostController::class, 'update']);
Route::get('posts/delete', [PostController::class, 'delete']);

C:\xampp\htdocs\test\app\Http\Controllers\PostController.php

Hi,

Here, I will show you how to work laravel 9 http request example. if you want to see an example of laravel 9 http client request example then you are the right place. step by step explain laravel 9 guzzle http client example. This tutorial will give you a simple example of php laravel 9 http client request. you will do the following things for laravel 9 http Client post request.

Laravel 9 provides an inbuilt HTTP Client using guzzlehttp/guzzle package. you can easily run HTTP client requests using HTTP facade. you can send GET, POST, PUT, DELETE requests with you can easily get responses with text and JSON too. you can also pass header and authentication tokens easily.

Here, I will give you very simple examples of how to run a call HTTP API request from laravel 9?

1) Laravel 9 HTTP cURL GET Request Example

2) Laravel 9 HTTP cURL POST Request Example

3) Laravel 9 HTTP cURL PUT Request Example

4) Laravel 9 HTTP cURL DELETE Request Example

5) Laravel 9 API with Response

Let's see one by one example

Install Laravel 9:

This step is not required; however, if you have not created the laravel app, then you may go ahead and execute the below command:

1) Laravel 9 HTTP cURL GET Request Example:

Here, we will see how to send curl http get request in laravel 9, let's update route file code and controller file code. you can see output as well:

routes/web.php

app/Http/Controllers/PostController.php

Output:

2) Laravel 9 HTTP cURL POST Request Example:

Here, we will see how to send curl http post request in laravel 9, let's update route file code and controller file code. you can see output as well:

routes/web.php

app/Http/Controllers/PostController.php

Output:

3) Laravel 9 HTTP cURL PUT Request Example:

Here, we will see how to send curl http put request in laravel 9, let's update route file code and controller file code. you can see output as well:

routes/web.php

app/Http/Controllers/PostController.php

Output:

4) Laravel 9 HTTP cURL DELETE Request Example:

Here, we will see how to send curl http delete request in laravel 9, let's update route file code and controller file code. you can see output as well:

routes/web.php

app/Http/Controllers/PostController.php

5) Laravel 9 API with Response:

We will create very simple http request full example. we need to create simple route to call controller method. so let's create it:

routes/web.php

app/Http/Controllers/PostController.php

Output:

Read Also: Laravel 9 Send Mail using Gmail SMTP Server

You can also get more information about Http Client in Laravel Docs: Click Here.

I hope it can help you...

Last updated

Was this helpful?