PHP code example of iqsuite / platform-sdk-laravel
1. Go to this page and download the library: Download iqsuite/platform-sdk-laravel 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/ */
iqsuite / platform-sdk-laravel example snippets
use IQSuite\Platform\Facades\IQSuite;
public function listAllIndices()
{
$response = IQSuite::getAllIndices();
return $response;
}
bash
php artisan vendor:publish --tag=iqsuite-config