Skip to content

Commit

Permalink
readme arrumado e adicionado manuais...
Browse files Browse the repository at this point in the history
  • Loading branch information
diorgesl committed Sep 30, 2020
1 parent f9971c5 commit 547b79c
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 1 deletion.
Binary file not shown.
Binary file not shown.
Binary file added materiais/CBR - Listagem de Boletos Portal.pdf
Binary file not shown.
Binary file added materiais/Modelo para o boleto de cobrança.pdf
Binary file not shown.
40 changes: 39 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Build Status][ico-travis]][link-travis]
[![StyleCI][ico-styleci]][link-styleci]

API para registro/verificação de boletos usando o projeto Piloto do BB, compátivel com Laravel 5 ao 8.
Pacote para Laravel, API para registro/verificação de boletos usando o projeto Piloto do BB, compátivel com Laravel 5 ao 8.

## Installation

Expand All @@ -24,6 +24,44 @@ php artisan vendor:publish --provider="Diorgesl\DiorgesBB\DiorgesBBServiceProvid

Configurar o arquivo `config/diorgesbb.php` com os dados de acesso da API.

Para registrar um boleto:
```
<?php
use Diorgesl\DiorgesBB\Boletos;
use Diorgesl\DiorgesBB\Boleto;
use Diorgesl\DiorgesBB\Pagador;
$boletos = new Boletos();
$pagador = new Pagador([
'numeroRegistro' => 97965940132,
'nome' => 'CLIENTE TESTE',
'endereco' => 'AL SATELITE 13',
'bairro' => 'UNIVERSITARIO',
'cidade' => 'CORUMBA',
'cep' => 79304310,
'uf' => 'MS'
]);
$boleto = new Boleto([
"codigoModalidade" => 1,
"dataEmissao" => "29.09.2020",
"dataVencimento" => "30.10.2020",
"valorOriginal" => 109.90,
"codigoAceite" => "N",
"codigoTipoTitulo" => 10,
"descricaoTipoTitulo" => "Duplicata Mercantil",
"indicadorPermissaoRecebimentoParcial" => "N",
"numeroTituloBeneficiario" => "123456",
"numeroTituloCliente" => 43832318,
"pagador" => $pagador,
]);
$ret = $boletos->registrar($boleto);
var_dump($ret);
```

## Change log

Please see the [changelog](changelog.md) for more information on what has changed recently.
Expand Down

0 comments on commit 547b79c

Please sign in to comment.