PHP code example of eliseusantos / laravel-contaazul

1. Go to this page and download the library: Download eliseusantos/laravel-contaazul 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/ */

    

eliseusantos / laravel-contaazul example snippets


CONTA_AZUL_BASE_URI="https://api.contaazul.com"
CONTA_AZUL_CLIENT_ID="your_token_here"
CONTA_AZUL_CLIENT_TOKEN="your_token_here"

use EliseuSantos\ContaAzul\Facades\ContaAzul as ContaAzul;

$customers = ContaAzul::customer()->getCustomers();
bash
php artisan vendor:publish --provider="EliseuSantos\ContaAzul\Providers\ContaAzulServiceProvider"