@extends('admin.layout') @section('title', 'Dashboard') @section('content')
| Producto | Vendidos |
|---|---|
| {{ $item->producto ? $item->producto->nombre : 'Producto Eliminado' }} | {{ $item->total_sold }} |
| Camarero | Total Ventas |
|---|---|
| {{ $item->usuario ? $item->usuario->name : 'Desconocido' }} | € {{ number_format($item->total_sales, 2) }} |
| Fecha Cierre | Cajera | Total Final | Acciones |
|---|---|---|---|
| {{ $caja->fecha_cierre->format('d/m/Y H:i') }} | {{ $caja->nombre_cajera ?? 'N/A' }} | € {{ number_format(($caja->total_efectivo + $caja->total_tarjeta + $caja->total_bizum - $caja->total_gastos), 2) }} | Ver Detalle |