@extends('layouts.reportes') @section('content')
REPORTE DE COMPRA DE BOLSA DE UTILES
@for ($i = 0; $i < count($compras); $i ++) @php $t_can = 0; $t_cost = 0; $t_precio = 0; @endphp @foreach ($compras[$i] as $art) @php $t_can += $art->cantidad ; $t_cost += $art->bolsa->p_costo; $t_precio += $art->bolsa->p_costo * $art->cantidad; @endphp @endforeach @endfor
# BOLSA CANTIDAD PRECIO COSTO TOTAL FECHA DE COMPRA TIPO RECIBO USUARIO
{{$art->id}} {{$art->bolsa->nombre}} {{$art->cantidad}} Q. {{number_format($art->bolsa->p_costo, 2)}} Q. {{number_format($art->cantidad * $art->bolsa->p_costo, 2)}} {{$art->f_compra}} {{$art->tipo}} {{$art->recibo}} {{$art->user->name}}
- - {{$t_can}} unidades Q. {{number_format($t_cost, 2)}} Q. {{number_format($t_precio, 2)}} - - -
--------- --------- --------- --------- --------- --------- --------- --------- --------- ---------
@endsection