@extends('layouts.master') @section('title') Inicio @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Inicio @endslot @slot('li_2') Panel Facturación @endslot @slot('title') Registrar Factura @endslot @endcomponent
Generar Facturación
@php \Carbon\Carbon::setLocale('es'); @endphp
Filtros de búsqueda
@foreach($facturas as $f) @endforeach
Cod. Inscripción #Factura Cliente DNI Periodo Lectura Anterior Lectura Actual Consumo Monto Total
{{ $f->conexion->cliente->codigo_inscripcion ?? '—' }} {{ $f->numero_factura }} {{ $f->conexion->cliente->nombres_razon_social ?? '—' }} {{ $f->conexion->cliente->documento_identidad ?? '—' }} {{ $f->periodo_consumo }} {{ $f->lectura_anterior }} {{ $f->lectura_actual }} {{ $f->consumo }} m³ {{ number_format($f->monto_total, 2) }}
@endsection @section('script') @endsection