@extends('layouts.admin') @section('styles') @endsection @section('content')

{{$cliente->nombre}}


CREDITOS

@php $t_deuda = 0; @endphp @foreach ($deudas as $deu) @php $t_deuda += $deu->total; @endphp @endforeach
# DESCRIPCION FECHA DE PAGO FECHA DE REGISTRO TOTAL
{{$deu->id}} {{$deu->fecha_pago}} {{$deu->created_at}} Q. {{number_format($deu->total, 2)}}
@csrf @method('delete') @can('admin') @endcan

ABONOS

@php $t_abono = 0; @endphp @foreach ($abonos as $deu) @php $t_abono += $deu->total; @endphp @endforeach
# FECHA DE REGISTRO DESCRIPCION TIPO TOTAL
{{$deu->id}} {{$deu->created_at}} {{$deu->descripcion}} {{$deu->tipo}} Q. {{number_format($deu->total, 2)}}
@csrf @method('delete') @can('admin') @endcan

REPORTE DE HISTORIAL DE CREDITO

@csrf()

Actualizar Cliente

@csrf @method('PUT') @include('admin/clientes/components/form') @can('admin')
@endcan

Cliente / {{$cliente->nombre}}

{{$cliente->nombre}}

Direccion: {{$cliente->direccion}}

Nit: {{$cliente->nit}}

Telefono: {{$cliente->telefono1}}

Clinica: {{$cliente->telefono2}}

Total Deuda: Q. {{number_format($cliente->deuda, 2)}}

@endsection @section('scripts') @endsection