Skip to main content

Clients

website # root directory of your site
├── app
│ ├── Http
│ │ ├── Clients
│ │ │ ├── GuzzleClient.php
│ │ │ └── ...
│ │ └── ...
│ └── ...
├── composer.json
└── ...
use App\Http\Clients\GuzzleClient;

$mfr = new GuzzleClient('mfr');
$mfr->post($entity, $body);