PHP code example of bildvitta / iss-crm

1. Go to this page and download the library: Download bildvitta/iss-crm 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/ */

    

bildvitta / iss-crm example snippets


return [

    'base_uri' => env('MS_CRM_BASE_URI', 'https://api.almobi.com.br'),

    'prefix' => env('MS_CRM_API_PREFIX', '/api')
];


$issCrm = new \Bildvitta\IssCrm('jwt-hub');

$issCrm->customers()->search();
print_r($issCrm->customer()->find('uuid'));
bash
php artisan vendor:publish --provider="Bildvitta\IssCrm\IssCrmServiceProvider" --tag="iss-crm-config"