@extends('layouts.app') @section('title', 'Historial de Ventas') @section('content')
ID Venta | Vendedor | Fecha | Total | Acciones |
---|---|---|---|---|
{{ $venta->id }} | {{ $venta->user->name ?? '-' }} | {{ $venta->created_at->format('d/m/Y H:i') }} | ${{ number_format($venta->total, 2) }} | Detalles @if(Auth::check() && Auth::user()->is_admin) @endif |
No hay ventas registradas. |