@extends('layouts.app') @section('css') @endsection @section('content')

Boletos Sicoob

Gerencie todos os boletos gerados via API Sicoob

Configurações
@if($boletos->count() > 0) @foreach($boletos as $boleto)
NÚMERO DO BOLETO {{ $boleto->external_id }}
VALOR R$ {{ number_format($boleto->valor, 2, ',', '.') }}
STATUS @if($boleto->status == 'registrado') Registrado @elseif($boleto->status == 'liquidado') Liquidado @else Baixado @endif
DATA CRIAÇÃO {{ $boleto->created_at->format('d/m/Y H:i') }}
@if($boleto->status == 'registrado') @endif
@endforeach
{{ $boletos->links() }}
@else

Nenhum boleto encontrado

Gere seu primeiro boleto para começar

@endif
@endsection @section('js') @endsection