@extends('metronic.base')
@section('titulo')
C x P
@endsection
@section('content')
@include('sessions')
@component('components.table')
@slot('thead')
{{ __('Codigo Proveedor') }} |
{{ __('Proveedor') }} |
{{ __('Cuentas Pendientes') }} |
{{ __('Total Pagar') }} |
{{ __('Acciones') }} |
{{ __('ID') }} |
@endslot
@slot('tfoot')
|
|
|
|
|
|
@endslot
@endcomponent
{{--
Item |
Proveedor |
Cuentas Pendientes |
Fecha vencimiento |
Total por pagar |
Acciones |
@php
$i = 1;
@endphp
@foreach ($clientes as $item)
{{ $i }} |
{{ $item->nombreProveedor }} |
{{ $item->nDoc }} |
{{ $item->f_vencimiento }} |
${{number_format($item->totalMonto, 2)}} |
|
@php
$i++;
@endphp
@endforeach
--}}
{{-- @include('cotizacionCompleta.modals.documentoFacturacion') --}}
@endsection
@section('extrajs')
@endsection