@extends('layout')
@section('content')
Reporte de Ventas
Ventas realizadas en tiendas
TIENDAS | MONTO |
---|---|
{{ $t->nombre }} | ${{ number_format($t->total,0,'.','.') }} |
TOTAL | ${{ number_format($total,0,'.','.') }} |
FORMA DE PAGO | MONTO |
---|---|
Efectivo | ${{ number_format($pagos->efectivo ?? 0,0,'.','.') }} |
Tarjeta | ${{ number_format($pagos->tarjeta ?? 0,0,'.','.') }} |
Transferencias | ${{ number_format($pagos->transferencias ?? 0,0,'.','.') }} |
TOTAL | @php $total = $pagos->efectivo + $pagos->tarjeta + $pagos->transferencias; @endphp${{ number_format($total,0,'.','.') }} |