@extends('admin.layout') @section('title', 'Detalle de Venta - Admin IMOZA') @section('header', 'Detalle de Venta') @section('content')
{{ $sale->created_at->format('d/m/Y H:i') }}
| Producto | Precio | Cant. | Total |
|---|---|---|---|
| {{ $item->product->name ?? 'N/A' }} | ${{ number_format($item->unit_price, 2) }} | {{ $item->quantity }} | ${{ number_format($item->total, 2) }} |