@extends('layouts.app') @section('content')
| Responsable | Cantidad | Monto Total | % |
|---|---|---|---|
|
{{ substr($user->name, 0, 1) }}
|
{{ $user->count }} | {{ number_format($user->total_amount, 2, ',', '.') }} | @if($totalPendingAmount > 0) {{ number_format(($user->total_amount / $totalPendingAmount) * 100, 1) }}% @endif |
| Tarjeta | Banco | Cantidad | Monto Total | % |
|---|---|---|---|---|
| {{ $card->number }} | {{ $card->bank_name }} | {{ $card->count }} | {{ number_format($card->total_amount, 2, ',', '.') }} | @if($totalPendingAmount > 0) {{ number_format(($card->total_amount / $totalPendingAmount) * 100, 1) }}% @endif |