@extends('layouts.reportes') @section('content')
REPORTE VENTA DE UNIFORME A PROFESORES
No | NOMBRE | TALLA | CANTIDAD | PRECIO DE VENTA | PROFESOR | TOTAL |
---|---|---|---|---|---|---|
{{ $d->id }} | {{ $d->uniforme->nombre }} | {{ $d->uniforme->talla }} | {{ $d->cantidad }} | {{ $d->uniforme->p_venta }} | {{ $d->profe->nombre }} | Q. {{ number_format($d->uniforme->p_venta * $d->cantidad, 2) }} |
TOTAL DE INVERSION: Q. {{number_format($t_inve, 2)}}
TOTAL DE VENTAS: Q. {{number_format($t_ven, 2)}}
TOTAL DE GANANCIA: Q. {{number_format($t_gan, 2)}}
@endsection