This package provides a simple way to interact with the Itau API in your Laravel application.
You can install the package via composer:
composer require itau/client
Publish the configuration file:
php artisan vendor:publish --provider="Itau\ItauServiceProvider" --tag="config"
This will create a config/itau.php
file where you can set your Itau API credentials.
use Itau\Facades\Itau;
$token = Itau::getToken();
use Itau\Facades\Itau;
$data = [];
$response = Itau::registrarBoletoCobranca($data);
composer test
The MIT License (MIT).