1. Go to this page and download the library: Download mix-code/daftra-client library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mix-code / daftra-client example snippets
use MixCode\DaftraClient\DaftraClient;
class ClientController
{
public function listClients()
{
$daftraClient = new DaftraClient();
return $daftraClient->listClients();
}
}
use MixCode\DaftraClient\DaftraClientFacade as Daftra;
$clients = Daftra::listClients();
use MixCode\DaftraClient\DaftraClient;
class ClientController
{
public function __construct(private DaftraClient $daftraClient) {}
public function listClients()
{
return $this->daftraClient->listClients();
}
}
$clients = $daftraClient->listClients();
$client = $daftraClient->showClient($clientId);
use MixCode\DaftraClient\Payloads\ClientPayload;
$payload = new ClientPayload(
name: 'John Doe',
email: '[email protected]'
);
$response = $daftraClient->createClient($payload);
use MixCode\DaftraClient\Payloads\ClientPayload;
$payload = new ClientPayload(
name: 'John Doe',
email: '[email protected]'
);
$response = $daftraClient->updateClient($payload);