@extends('layouts.app') @extends('contabilidad.menu') @section('content')

facturas

@csrf

Fecha consultada

del {{ $fecha_inicio->format('d-m-Y') }}

al {{ $fecha_fin->format('d-m-Y') }}

Fecha Inicio:

Fecha Final:


@php $total_final = 0; @endphp @foreach ($facturas as $factura) @php $estado = $factura->estadoString(); @endphp @php $total_final += $factura->total; @endphp @endforeach
ID No.SAT Total Cliente Fecha Estado
{{ $factura->id }} {{ $factura->no_sat }} {{ number_format($factura->total, 2, '.', ',') }} {{ $factura?->cliente?->nombre }} {{ date('d-m-Y', strtotime($factura->created_at)) }} {{ $estado->estado }}
.TOTAL {{ number_format($total_final, 2, '.', ',') }}
@endsection