@extends('layouts.reportes') @section('content')

{{$titulo}}

TOTAL DE PAGO: Q. {{number_format($total, 2)}}

@foreach ($pagos as $p ) @endforeach
# COLABORADOR ASIGNACION TOTAL FECHA DE PAGO
{{$p->id}} {{$p->cliente->nombre}} {{$p->cliente->asignacion}} Q. {{number_format($p->total, 2)}} {{$p->created_at}}
@endsection