├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── duvida.md │ └── relatar-bug.md └── workflows │ └── build.yml ├── .php-cs-fixer.php ├── Dockerfile ├── LICENSE ├── README.md ├── composer.json ├── docker-compose.yml ├── exemplos ├── abc_boleto.php ├── abc_remessa.php ├── arquivos │ ├── .gitignore │ ├── banrisul.ret │ ├── bb.ret │ ├── bnb.ret │ ├── bradesco.ret │ ├── btg.ret │ ├── bv.ret │ ├── cef.ret │ ├── delbank.ret │ ├── fibra.ret │ ├── hsbc.ret │ ├── inter.ret │ ├── itau.ret │ ├── pine.ret │ ├── santander.ret │ ├── santander_pix.ret │ ├── sicredi.ret │ └── template.blade.php ├── autoload.php ├── bancoob_boleto.php ├── bancoob_remessa.php ├── bancoob_retorno.php ├── banrisul_boleto.php ├── banrisul_remessa.php ├── banrisul_retorno.php ├── bb_boleto.php ├── bb_remessa.php ├── bb_remessa_extendida.php ├── bb_retorno.php ├── bnb_boleto.php ├── bnb_remessa.php ├── bnb_retorno.php ├── boleto_mail.php ├── boleto_protection.php ├── boletos.php ├── bradesco_boleto.php ├── bradesco_remessa.php ├── bradesco_remessa_extendida.php ├── bradesco_retorno.php ├── btg_boleto.php ├── btg_remessa.php ├── btg_retorno.php ├── bv_boleto.php ├── bv_remessa.php ├── bv_retorno.php ├── c6_boleto.php ├── c6_remessa.php ├── cef_boleto.php ├── cef_remessa.php ├── cef_retorno.php ├── certs │ └── .gitignore ├── daycoval_boleto.php ├── daycoval_remessa.php ├── delbank_112_remessa.php ├── delbank_121_remessa.php ├── delbank_retorno.php ├── fibra_boleto.php ├── fibra_remessa.php ├── fibra_retorno.php ├── grafeno_boleto.php ├── grafeno_remessa.php ├── hsbc_boleto.php ├── hsbc_remessa.php ├── hsbc_retorno.php ├── index.php ├── inter_boleto.php ├── inter_boleto_api.php ├── inter_boleto_lista_api.php ├── inter_remessa.php ├── inter_retorno.php ├── interv2_boleto_lista_api.php ├── itau_boleto.php ├── itau_remessa.php ├── itau_retorno.php ├── notas_fiscais_remessa.php ├── ourinvest_boleto.php ├── ourinvest_remessa.php ├── ourinvest_retorno.php ├── pine_boleto.php ├── pine_remessa.php ├── pine_retorno.php ├── pix_boleto_qrcode_copia_cola.php ├── pix_boleto_qrcode_copia_cola_localizacao.php ├── pix_boleto_qrcode_img.php ├── pix_boleto_qrcode_img_base64.php ├── pix_boleto_qrcode_img_data.php ├── pix_retorno.php ├── remessas.php ├── rendimento_boleto.php ├── rendimento_remessa.php ├── rendimento_retorno.php ├── retornos.php ├── santander_boleto.php ├── santander_remessa.php ├── santander_retorno.php ├── sicredi_boleto.php ├── sicredi_remessa.php ├── sicredi_retorno.php └── unicred_boleto_api.php ├── logos ├── 001.png ├── 004.png ├── 033.png ├── 041.png ├── 077.png ├── 085.png ├── 104.png ├── 133.png ├── 136.png ├── 208.png ├── 224.png ├── 237.png ├── 246.png ├── 274.png ├── 336.png ├── 341.png ├── 399.png ├── 435.png ├── 633.png ├── 643.png ├── 655.png ├── 707.png ├── 712.png ├── 748.png └── 756.png ├── phpunit_gt_81.xml └── src ├── Api ├── AbstractAPI.php ├── Banco │ ├── Inter.php │ └── Unicred.php └── Exception │ ├── CurlException.php │ ├── HttpException.php │ ├── MissingDataException.php │ └── UnauthorizedException.php ├── Blade.php ├── Boleto ├── AbstractBoleto.php ├── Banco │ ├── Abc.php │ ├── Ailos.php │ ├── Bancoob.php │ ├── Banrisul.php │ ├── Bb.php │ ├── Bnb.php │ ├── Bradesco.php │ ├── Btg.php │ ├── Bv.php │ ├── C6.php │ ├── Caixa.php │ ├── Cresol.php │ ├── Daycoval.php │ ├── Delbank.php │ ├── Fibra.php │ ├── Grafeno.php │ ├── Hsbc.php │ ├── Inter.php │ ├── Itau.php │ ├── Ourinvest.php │ ├── Pine.php │ ├── Rendimento.php │ ├── Santander.php │ ├── Sicredi.php │ └── Unicred.php ├── LaravelBoletoMailer.php ├── Mail.php └── Render │ ├── AbstractPdf.php │ ├── Html.php │ ├── Pdf.php │ ├── PdfCaixa.php │ ├── cache │ └── .gitignore │ ├── compiled │ └── .gitignore │ └── view │ ├── boleto.blade.php │ ├── caixa.blade.php │ ├── carne.blade.php │ ├── layout.blade.php │ └── partials │ └── ficha-compensacao.blade.php ├── CalculoDV.php ├── Cnab ├── Remessa │ ├── AbstractRemessa.php │ ├── Cnab240 │ │ ├── AbstractRemessa.php │ │ └── Banco │ │ │ ├── Ailos.php │ │ │ ├── Bancoob.php │ │ │ ├── Banrisul.php │ │ │ ├── Bb.php │ │ │ ├── Bradesco.php │ │ │ ├── Btg.php │ │ │ ├── Caixa.php │ │ │ ├── Itau.php │ │ │ ├── Santander.php │ │ │ └── Sicredi.php │ └── Cnab400 │ │ ├── AbstractRemessa.php │ │ └── Banco │ │ ├── Abc.php │ │ ├── Bancoob.php │ │ ├── Banrisul.php │ │ ├── Bb.php │ │ ├── Bnb.php │ │ ├── Bradesco.php │ │ ├── Bv.php │ │ ├── C6.php │ │ ├── Caixa.php │ │ ├── Cresol.php │ │ ├── Daycoval.php │ │ ├── Delbank.php │ │ ├── Fibra.php │ │ ├── Grafeno.php │ │ ├── Hsbc.php │ │ ├── Inter.php │ │ ├── Itau.php │ │ ├── Ourinvest.php │ │ ├── Pine.php │ │ ├── Rendimento.php │ │ ├── Santander.php │ │ ├── Sicredi.php │ │ └── Unicred.php └── Retorno │ ├── AbstractRetorno.php │ ├── Cnab240 │ ├── AbstractRetorno.php │ ├── Banco │ │ ├── Ailos.php │ │ ├── Bancoob.php │ │ ├── Banrisul.php │ │ ├── Bb.php │ │ ├── Bradesco.php │ │ ├── Btg.php │ │ ├── Caixa.php │ │ ├── Cresol.php │ │ ├── Itau.php │ │ ├── Santander.php │ │ └── Sicredi.php │ ├── Detalhe.php │ ├── Header.php │ ├── HeaderLote.php │ ├── Trailer.php │ └── TrailerLote.php │ ├── Cnab400 │ ├── AbstractRetorno.php │ ├── Banco │ │ ├── Abc.php │ │ ├── Bancoob.php │ │ ├── Banrisul.php │ │ ├── Bb.php │ │ ├── Bnb.php │ │ ├── Bradesco.php │ │ ├── Bv.php │ │ ├── C6.php │ │ ├── Caixa.php │ │ ├── Cresol.php │ │ ├── Daycoval.php │ │ ├── Delbank.php │ │ ├── Fibra.php │ │ ├── Grafeno.php │ │ ├── Hsbc.php │ │ ├── Inter.php │ │ ├── Itau.php │ │ ├── Ourinvest.php │ │ ├── Pine.php │ │ ├── Rendimento.php │ │ ├── Santander.php │ │ ├── Sicredi.php │ │ └── Unicred.php │ ├── Detalhe.php │ ├── Header.php │ └── Trailer.php │ └── Factory.php ├── Contracts ├── Api │ └── Api.php ├── Boleto │ ├── Boleto.php │ ├── BoletoAPI.php │ └── Render │ │ ├── Html.php │ │ └── Pdf.php ├── Cnab │ ├── Cnab.php │ ├── Remessa.php │ ├── Retorno.php │ ├── Retorno │ │ ├── Cnab240 │ │ │ ├── Detalhe.php │ │ │ ├── Header.php │ │ │ ├── HeaderLote.php │ │ │ ├── Trailer.php │ │ │ └── TrailerLote.php │ │ ├── Cnab400 │ │ │ ├── Detalhe.php │ │ │ ├── Header.php │ │ │ └── Trailer.php │ │ └── Detalhe.php │ ├── RetornoCnab240.php │ └── RetornoCnab400.php ├── NotaFiscal.php ├── Pessoa.php └── Webhook │ └── Webhook.php ├── Exception ├── BaseException.php └── ValidationException.php ├── MagicTrait.php ├── NotaFiscal.php ├── Pessoa.php ├── Util.php └── Webhook ├── AbstractWebhook.php ├── Banco └── Inter.php └── Boleto.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: eduardokum -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/duvida.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/.github/ISSUE_TEMPLATE/duvida.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/relatar-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/.github/ISSUE_TEMPLATE/relatar-bug.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/composer.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /exemplos/abc_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/abc_boleto.php -------------------------------------------------------------------------------- /exemplos/abc_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/abc_remessa.php -------------------------------------------------------------------------------- /exemplos/arquivos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/.gitignore -------------------------------------------------------------------------------- /exemplos/arquivos/banrisul.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/banrisul.ret -------------------------------------------------------------------------------- /exemplos/arquivos/bb.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/bb.ret -------------------------------------------------------------------------------- /exemplos/arquivos/bnb.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/bnb.ret -------------------------------------------------------------------------------- /exemplos/arquivos/bradesco.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/bradesco.ret -------------------------------------------------------------------------------- /exemplos/arquivos/btg.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/btg.ret -------------------------------------------------------------------------------- /exemplos/arquivos/bv.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/bv.ret -------------------------------------------------------------------------------- /exemplos/arquivos/cef.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/cef.ret -------------------------------------------------------------------------------- /exemplos/arquivos/delbank.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/delbank.ret -------------------------------------------------------------------------------- /exemplos/arquivos/fibra.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/fibra.ret -------------------------------------------------------------------------------- /exemplos/arquivos/hsbc.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/hsbc.ret -------------------------------------------------------------------------------- /exemplos/arquivos/inter.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/inter.ret -------------------------------------------------------------------------------- /exemplos/arquivos/itau.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/itau.ret -------------------------------------------------------------------------------- /exemplos/arquivos/pine.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/pine.ret -------------------------------------------------------------------------------- /exemplos/arquivos/santander.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/santander.ret -------------------------------------------------------------------------------- /exemplos/arquivos/santander_pix.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/santander_pix.ret -------------------------------------------------------------------------------- /exemplos/arquivos/sicredi.ret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/sicredi.ret -------------------------------------------------------------------------------- /exemplos/arquivos/template.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/arquivos/template.blade.php -------------------------------------------------------------------------------- /exemplos/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/autoload.php -------------------------------------------------------------------------------- /exemplos/bancoob_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bancoob_boleto.php -------------------------------------------------------------------------------- /exemplos/bancoob_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bancoob_remessa.php -------------------------------------------------------------------------------- /exemplos/bancoob_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bancoob_retorno.php -------------------------------------------------------------------------------- /exemplos/banrisul_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/banrisul_boleto.php -------------------------------------------------------------------------------- /exemplos/banrisul_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/banrisul_remessa.php -------------------------------------------------------------------------------- /exemplos/banrisul_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/banrisul_retorno.php -------------------------------------------------------------------------------- /exemplos/bb_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bb_boleto.php -------------------------------------------------------------------------------- /exemplos/bb_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bb_remessa.php -------------------------------------------------------------------------------- /exemplos/bb_remessa_extendida.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bb_remessa_extendida.php -------------------------------------------------------------------------------- /exemplos/bb_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bb_retorno.php -------------------------------------------------------------------------------- /exemplos/bnb_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bnb_boleto.php -------------------------------------------------------------------------------- /exemplos/bnb_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bnb_remessa.php -------------------------------------------------------------------------------- /exemplos/bnb_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bnb_retorno.php -------------------------------------------------------------------------------- /exemplos/boleto_mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/boleto_mail.php -------------------------------------------------------------------------------- /exemplos/boleto_protection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/boleto_protection.php -------------------------------------------------------------------------------- /exemplos/boletos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/boletos.php -------------------------------------------------------------------------------- /exemplos/bradesco_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bradesco_boleto.php -------------------------------------------------------------------------------- /exemplos/bradesco_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bradesco_remessa.php -------------------------------------------------------------------------------- /exemplos/bradesco_remessa_extendida.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bradesco_remessa_extendida.php -------------------------------------------------------------------------------- /exemplos/bradesco_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bradesco_retorno.php -------------------------------------------------------------------------------- /exemplos/btg_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/btg_boleto.php -------------------------------------------------------------------------------- /exemplos/btg_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/btg_remessa.php -------------------------------------------------------------------------------- /exemplos/btg_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/btg_retorno.php -------------------------------------------------------------------------------- /exemplos/bv_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bv_boleto.php -------------------------------------------------------------------------------- /exemplos/bv_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bv_remessa.php -------------------------------------------------------------------------------- /exemplos/bv_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/bv_retorno.php -------------------------------------------------------------------------------- /exemplos/c6_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/c6_boleto.php -------------------------------------------------------------------------------- /exemplos/c6_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/c6_remessa.php -------------------------------------------------------------------------------- /exemplos/cef_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/cef_boleto.php -------------------------------------------------------------------------------- /exemplos/cef_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/cef_remessa.php -------------------------------------------------------------------------------- /exemplos/cef_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/cef_retorno.php -------------------------------------------------------------------------------- /exemplos/certs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /exemplos/daycoval_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/daycoval_boleto.php -------------------------------------------------------------------------------- /exemplos/daycoval_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/daycoval_remessa.php -------------------------------------------------------------------------------- /exemplos/delbank_112_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/delbank_112_remessa.php -------------------------------------------------------------------------------- /exemplos/delbank_121_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/delbank_121_remessa.php -------------------------------------------------------------------------------- /exemplos/delbank_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/delbank_retorno.php -------------------------------------------------------------------------------- /exemplos/fibra_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/fibra_boleto.php -------------------------------------------------------------------------------- /exemplos/fibra_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/fibra_remessa.php -------------------------------------------------------------------------------- /exemplos/fibra_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/fibra_retorno.php -------------------------------------------------------------------------------- /exemplos/grafeno_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/grafeno_boleto.php -------------------------------------------------------------------------------- /exemplos/grafeno_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/grafeno_remessa.php -------------------------------------------------------------------------------- /exemplos/hsbc_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/hsbc_boleto.php -------------------------------------------------------------------------------- /exemplos/hsbc_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/hsbc_remessa.php -------------------------------------------------------------------------------- /exemplos/hsbc_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/hsbc_retorno.php -------------------------------------------------------------------------------- /exemplos/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/index.php -------------------------------------------------------------------------------- /exemplos/inter_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/inter_boleto.php -------------------------------------------------------------------------------- /exemplos/inter_boleto_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/inter_boleto_api.php -------------------------------------------------------------------------------- /exemplos/inter_boleto_lista_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/inter_boleto_lista_api.php -------------------------------------------------------------------------------- /exemplos/inter_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/inter_remessa.php -------------------------------------------------------------------------------- /exemplos/inter_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/inter_retorno.php -------------------------------------------------------------------------------- /exemplos/interv2_boleto_lista_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/interv2_boleto_lista_api.php -------------------------------------------------------------------------------- /exemplos/itau_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/itau_boleto.php -------------------------------------------------------------------------------- /exemplos/itau_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/itau_remessa.php -------------------------------------------------------------------------------- /exemplos/itau_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/itau_retorno.php -------------------------------------------------------------------------------- /exemplos/notas_fiscais_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/notas_fiscais_remessa.php -------------------------------------------------------------------------------- /exemplos/ourinvest_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/ourinvest_boleto.php -------------------------------------------------------------------------------- /exemplos/ourinvest_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/ourinvest_remessa.php -------------------------------------------------------------------------------- /exemplos/ourinvest_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/ourinvest_retorno.php -------------------------------------------------------------------------------- /exemplos/pine_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/pine_boleto.php -------------------------------------------------------------------------------- /exemplos/pine_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/pine_remessa.php -------------------------------------------------------------------------------- /exemplos/pine_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/pine_retorno.php -------------------------------------------------------------------------------- /exemplos/pix_boleto_qrcode_copia_cola.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/pix_boleto_qrcode_copia_cola.php -------------------------------------------------------------------------------- /exemplos/pix_boleto_qrcode_copia_cola_localizacao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/pix_boleto_qrcode_copia_cola_localizacao.php -------------------------------------------------------------------------------- /exemplos/pix_boleto_qrcode_img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/pix_boleto_qrcode_img.php -------------------------------------------------------------------------------- /exemplos/pix_boleto_qrcode_img_base64.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/pix_boleto_qrcode_img_base64.php -------------------------------------------------------------------------------- /exemplos/pix_boleto_qrcode_img_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/pix_boleto_qrcode_img_data.php -------------------------------------------------------------------------------- /exemplos/pix_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/pix_retorno.php -------------------------------------------------------------------------------- /exemplos/remessas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/remessas.php -------------------------------------------------------------------------------- /exemplos/rendimento_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/rendimento_boleto.php -------------------------------------------------------------------------------- /exemplos/rendimento_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/rendimento_remessa.php -------------------------------------------------------------------------------- /exemplos/rendimento_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/rendimento_retorno.php -------------------------------------------------------------------------------- /exemplos/retornos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/retornos.php -------------------------------------------------------------------------------- /exemplos/santander_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/santander_boleto.php -------------------------------------------------------------------------------- /exemplos/santander_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/santander_remessa.php -------------------------------------------------------------------------------- /exemplos/santander_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/santander_retorno.php -------------------------------------------------------------------------------- /exemplos/sicredi_boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/sicredi_boleto.php -------------------------------------------------------------------------------- /exemplos/sicredi_remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/sicredi_remessa.php -------------------------------------------------------------------------------- /exemplos/sicredi_retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/sicredi_retorno.php -------------------------------------------------------------------------------- /exemplos/unicred_boleto_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/exemplos/unicred_boleto_api.php -------------------------------------------------------------------------------- /logos/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/001.png -------------------------------------------------------------------------------- /logos/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/004.png -------------------------------------------------------------------------------- /logos/033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/033.png -------------------------------------------------------------------------------- /logos/041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/041.png -------------------------------------------------------------------------------- /logos/077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/077.png -------------------------------------------------------------------------------- /logos/085.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/085.png -------------------------------------------------------------------------------- /logos/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/104.png -------------------------------------------------------------------------------- /logos/133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/133.png -------------------------------------------------------------------------------- /logos/136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/136.png -------------------------------------------------------------------------------- /logos/208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/208.png -------------------------------------------------------------------------------- /logos/224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/224.png -------------------------------------------------------------------------------- /logos/237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/237.png -------------------------------------------------------------------------------- /logos/246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/246.png -------------------------------------------------------------------------------- /logos/274.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/274.png -------------------------------------------------------------------------------- /logos/336.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/336.png -------------------------------------------------------------------------------- /logos/341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/341.png -------------------------------------------------------------------------------- /logos/399.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/399.png -------------------------------------------------------------------------------- /logos/435.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/435.png -------------------------------------------------------------------------------- /logos/633.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/633.png -------------------------------------------------------------------------------- /logos/643.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/643.png -------------------------------------------------------------------------------- /logos/655.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/655.png -------------------------------------------------------------------------------- /logos/707.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/707.png -------------------------------------------------------------------------------- /logos/712.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/712.png -------------------------------------------------------------------------------- /logos/748.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/748.png -------------------------------------------------------------------------------- /logos/756.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/logos/756.png -------------------------------------------------------------------------------- /phpunit_gt_81.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/phpunit_gt_81.xml -------------------------------------------------------------------------------- /src/Api/AbstractAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Api/AbstractAPI.php -------------------------------------------------------------------------------- /src/Api/Banco/Inter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Api/Banco/Inter.php -------------------------------------------------------------------------------- /src/Api/Banco/Unicred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Api/Banco/Unicred.php -------------------------------------------------------------------------------- /src/Api/Exception/CurlException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Api/Exception/CurlException.php -------------------------------------------------------------------------------- /src/Api/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Api/Exception/HttpException.php -------------------------------------------------------------------------------- /src/Api/Exception/MissingDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Api/Exception/MissingDataException.php -------------------------------------------------------------------------------- /src/Api/Exception/UnauthorizedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Api/Exception/UnauthorizedException.php -------------------------------------------------------------------------------- /src/Blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Blade.php -------------------------------------------------------------------------------- /src/Boleto/AbstractBoleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/AbstractBoleto.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Abc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Abc.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Ailos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Ailos.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Bancoob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Bancoob.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Banrisul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Banrisul.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Bb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Bb.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Bnb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Bnb.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Bradesco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Bradesco.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Btg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Btg.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Bv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Bv.php -------------------------------------------------------------------------------- /src/Boleto/Banco/C6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/C6.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Caixa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Caixa.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Cresol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Cresol.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Daycoval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Daycoval.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Delbank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Delbank.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Fibra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Fibra.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Grafeno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Grafeno.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Hsbc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Hsbc.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Inter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Inter.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Itau.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Itau.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Ourinvest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Ourinvest.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Pine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Pine.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Rendimento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Rendimento.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Santander.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Santander.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Sicredi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Sicredi.php -------------------------------------------------------------------------------- /src/Boleto/Banco/Unicred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Banco/Unicred.php -------------------------------------------------------------------------------- /src/Boleto/LaravelBoletoMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/LaravelBoletoMailer.php -------------------------------------------------------------------------------- /src/Boleto/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Mail.php -------------------------------------------------------------------------------- /src/Boleto/Render/AbstractPdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Render/AbstractPdf.php -------------------------------------------------------------------------------- /src/Boleto/Render/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Render/Html.php -------------------------------------------------------------------------------- /src/Boleto/Render/Pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Render/Pdf.php -------------------------------------------------------------------------------- /src/Boleto/Render/PdfCaixa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Render/PdfCaixa.php -------------------------------------------------------------------------------- /src/Boleto/Render/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /src/Boleto/Render/compiled/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /src/Boleto/Render/view/boleto.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Render/view/boleto.blade.php -------------------------------------------------------------------------------- /src/Boleto/Render/view/caixa.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Render/view/caixa.blade.php -------------------------------------------------------------------------------- /src/Boleto/Render/view/carne.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Render/view/carne.blade.php -------------------------------------------------------------------------------- /src/Boleto/Render/view/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Render/view/layout.blade.php -------------------------------------------------------------------------------- /src/Boleto/Render/view/partials/ficha-compensacao.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Boleto/Render/view/partials/ficha-compensacao.blade.php -------------------------------------------------------------------------------- /src/CalculoDV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/CalculoDV.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/AbstractRemessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/AbstractRemessa.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/AbstractRemessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/AbstractRemessa.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Ailos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Ailos.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Bancoob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Bancoob.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Banrisul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Banrisul.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Bb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Bb.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Bradesco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Bradesco.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Btg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Btg.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Caixa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Caixa.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Itau.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Itau.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Santander.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Santander.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab240/Banco/Sicredi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab240/Banco/Sicredi.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/AbstractRemessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/AbstractRemessa.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Abc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Abc.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Bancoob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Bancoob.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Banrisul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Banrisul.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Bb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Bb.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Bnb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Bnb.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Bradesco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Bradesco.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Bv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Bv.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/C6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/C6.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Caixa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Caixa.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Cresol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Cresol.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Daycoval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Daycoval.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Delbank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Delbank.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Fibra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Fibra.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Grafeno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Grafeno.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Hsbc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Hsbc.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Inter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Inter.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Itau.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Itau.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Ourinvest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Ourinvest.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Pine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Pine.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Rendimento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Rendimento.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Santander.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Santander.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Sicredi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Sicredi.php -------------------------------------------------------------------------------- /src/Cnab/Remessa/Cnab400/Banco/Unicred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Remessa/Cnab400/Banco/Unicred.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/AbstractRetorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/AbstractRetorno.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/AbstractRetorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/AbstractRetorno.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Ailos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Ailos.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Bancoob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Bancoob.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Banrisul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Banrisul.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Bb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Bb.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Bradesco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Bradesco.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Btg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Btg.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Caixa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Caixa.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Cresol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Cresol.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Itau.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Itau.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Santander.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Santander.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Banco/Sicredi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Banco/Sicredi.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Detalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Detalhe.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Header.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/HeaderLote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/HeaderLote.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/Trailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/Trailer.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab240/TrailerLote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab240/TrailerLote.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/AbstractRetorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/AbstractRetorno.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Abc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Abc.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Bancoob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Bancoob.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Banrisul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Banrisul.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Bb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Bb.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Bnb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Bnb.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Bradesco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Bradesco.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Bv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Bv.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/C6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/C6.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Caixa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Caixa.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Cresol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Cresol.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Daycoval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Daycoval.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Delbank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Delbank.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Fibra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Fibra.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Grafeno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Grafeno.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Hsbc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Hsbc.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Inter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Inter.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Itau.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Itau.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Ourinvest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Ourinvest.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Pine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Pine.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Rendimento.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Rendimento.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Santander.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Santander.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Sicredi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Sicredi.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Banco/Unicred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Banco/Unicred.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Detalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Detalhe.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Header.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Cnab400/Trailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Cnab400/Trailer.php -------------------------------------------------------------------------------- /src/Cnab/Retorno/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Cnab/Retorno/Factory.php -------------------------------------------------------------------------------- /src/Contracts/Api/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Api/Api.php -------------------------------------------------------------------------------- /src/Contracts/Boleto/Boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Boleto/Boleto.php -------------------------------------------------------------------------------- /src/Contracts/Boleto/BoletoAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Boleto/BoletoAPI.php -------------------------------------------------------------------------------- /src/Contracts/Boleto/Render/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Boleto/Render/Html.php -------------------------------------------------------------------------------- /src/Contracts/Boleto/Render/Pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Boleto/Render/Pdf.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Cnab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Cnab.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Remessa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Remessa.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno/Cnab240/Detalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno/Cnab240/Detalhe.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno/Cnab240/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno/Cnab240/Header.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno/Cnab240/HeaderLote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno/Cnab240/HeaderLote.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno/Cnab240/Trailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno/Cnab240/Trailer.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno/Cnab240/TrailerLote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno/Cnab240/TrailerLote.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno/Cnab400/Detalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno/Cnab400/Detalhe.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno/Cnab400/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno/Cnab400/Header.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno/Cnab400/Trailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno/Cnab400/Trailer.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/Retorno/Detalhe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/Retorno/Detalhe.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/RetornoCnab240.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/RetornoCnab240.php -------------------------------------------------------------------------------- /src/Contracts/Cnab/RetornoCnab400.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Cnab/RetornoCnab400.php -------------------------------------------------------------------------------- /src/Contracts/NotaFiscal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/NotaFiscal.php -------------------------------------------------------------------------------- /src/Contracts/Pessoa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Pessoa.php -------------------------------------------------------------------------------- /src/Contracts/Webhook/Webhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Contracts/Webhook/Webhook.php -------------------------------------------------------------------------------- /src/Exception/BaseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Exception/BaseException.php -------------------------------------------------------------------------------- /src/Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Exception/ValidationException.php -------------------------------------------------------------------------------- /src/MagicTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/MagicTrait.php -------------------------------------------------------------------------------- /src/NotaFiscal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/NotaFiscal.php -------------------------------------------------------------------------------- /src/Pessoa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Pessoa.php -------------------------------------------------------------------------------- /src/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Util.php -------------------------------------------------------------------------------- /src/Webhook/AbstractWebhook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Webhook/AbstractWebhook.php -------------------------------------------------------------------------------- /src/Webhook/Banco/Inter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Webhook/Banco/Inter.php -------------------------------------------------------------------------------- /src/Webhook/Boleto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eduardokum/laravel-boleto/HEAD/src/Webhook/Boleto.php --------------------------------------------------------------------------------