laravel send request code example
Example 1: laravel send post request from controller
use Illuminate\Support\Facades\Http;
$response = Http::post('http://example.com/users', [
'name' => 'Steve',
'role' => 'Network Administrator',
]);
// By default, data will be sent using the application/json content type
Example 2: laravel http client
composer require guzzlehttp/guzzle
Example 3: laravel http client
use Illuminate\Support\Facades\Http;
$response = Http::get('http://test.com');