@extends('layouts.app') @section('content')
| N° Factura | Hora | Cliente | Cajero | Efectivo | Débito | Crédito | Cheque | Total |
|---|---|---|---|---|---|---|---|---|
| {{ $factura->numeroFormateado() }} | {{ $factura->created_at->format('H:i') }} | {{ $factura->cliente->nombre }} | {{ $factura->user->name }} | {{ number_format($factura->efectivo, 2) }} | {{ number_format($factura->debito, 2) }} | {{ number_format($factura->credito, 2) }} | {{ number_format($factura->cheque, 2) }} | {{ number_format($factura->total, 2) }} |
| No hay facturas para esta fecha. | ||||||||