@extends('fragments.fullTemplate') @section('titulo') Cobranza @endsection @section('contenido')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('warning'))
{{ session()->get('warning') }}
@endif @if (count($errors) > 0)
¡Error! Revise los campos obligatorios.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Datos cliente factura

{{$datos_cliente_factura->nombre_empresa}}

Crédito: Activo

Deuda parcial: ${{number_format("0", 2, '.', ',')}}

Deuda total: ${{number_format("0", 2, '.', ',')}}

Contactos
@foreach ($datos_cliente_factura->contactos as $dato_contacto) @endforeach
Nombre E-mail Teléfono Extensión Celular
{{$dato_contacto->nombre_contacto}} {{$dato_contacto->correo}} {{$dato_contacto->telefono}} {{$dato_contacto->extension}} {{$dato_contacto->celular}}
@include('Cobranza_v2.Detalles.Informes.Secciones.seccion_01')
@endsection