@extends('default.layout') @section('content')

Lista de boletos

@foreach($boletos as $b) @endforeach
# CLIENTE VALOR BANCO VENCIMENTO Nº DO BOLETO Nº DO DOCUMENTO JUROS MULTA
{{$b->conta->getCliente()->razao_social}} {{number_format($b->conta->valor_integral, 2, ',', '.')}} {{$b->banco->banco}} {{ \Carbon\Carbon::parse($b->data_vencimento)->format('d/m/Y')}} {{ $b->numero }} {{ $b->numero_documento }} {{number_format($b->juros, 2, ',', '.')}} {{number_format($b->multa, 2, ',', '.')}}
@section('javascript') @endsection @endsection