@extends('layouts.dashboardnew') @section('content') {{-- ===================== HEADER ===================== --}}
Vista general de ventas, bonos y productos comercializados.
| Imagen | Producto | Precio | Cantidad vendida | Total |
|---|---|---|---|---|
|
|
{{-- Nombre --}}
{{ $pro->tienda->title }} | {{-- Precio --}}@if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ $pro->tienda->precio }} @else {{ $pro->tienda->precio }} {{$moneda->simbolo}} @endif | {{-- Cantidad vendida --}}{{ $pro->total }} | {{-- Total --}}@if ($moneda->mostrar_a_d) {{$moneda->simbolo}} {{ ($pro->total * $pro->tienda->precio) }} @else {{ ($pro->total * $pro->tienda->precio) }} {{$moneda->simbolo}} @endif |