@extends('layouts.app') @section('content')
VENTAS
Doctor | Articulo / Tratamiento | Precio Venta | Precio Venta / Descuento | Precio Costo | Cantidad | Total | Fecha |
---|---|---|---|---|---|---|---|
{{$ven->cliente->nombre}} | {{$ven->articulo->nombre}} | Q. {{number_format($ven->articulo->p_venta, 2)}} | Q. {{number_format($ven->p_venta, 2)}} | Q. {{number_format($ven->p_costo, 2)}} | {{$ven->cantidad}} | Q. {{number_format($ven->cantidad * $ven->p_venta, 2)}} | {{$ven->created_at}} |
TOTAL VENTAS ESPERADAS: Q. {{number_format($ventas ,2 )}}
TOTAL VENTAS NETAS: Q. {{number_format($neto,2 )}}
TOTAL INVERSION: Q. {{number_format($invesion,2 )}}
TOTAL DESCUENTOS: Q. {{number_format($descuento,2 )}}
TOTAL GANANCIAS: Q. {{number_format($ganacia,2 )}}
ABONOS
Doctor | Valor | Tipo | Descripcion | Fecha |
---|---|---|---|---|
{{$a->cliente->nombre}} | Q. {{number_format($a->total, 2)}} | {{$a->tipo}} | {{$a->descripcion}} | {{$a->created_at}} |
Total de Abonos: Q. {{number_format($ta, 2)}}
Total en Creditos :
Q. {{number_format($t_deuda, 2)}}Caja Chica
Fecha | Valor | Usuario | Descripcion |
---|---|---|---|
{{$dt->fecha}} | Q. {{number_format($dt->valor, 2)}} | {{$dt->name}} | {{$dt->descripcion}} |
Gastos
Fecha | Valor | Usuario | Descripcion |
---|---|---|---|
{{$dt->fecha}} | Q. {{number_format($dt->valor, 2)}} | {{$dt->name}} | {{$dt->descripcion}} |