Reporte Inventario


Empresa:

{{$company->name}}

Fecha:

{{date('Y-m-d')}}

Ruc:

{{$company->number}}

Establecimiento:

{{$establishment->address}} - {{$establishment->department->description}} - {{$establishment->district->description}}

@if(!empty($records))
@php $total = 0; @endphp @foreach($records as $key => $value) @php $total_line = $value->stock * $value->item->purchase_unit_price; $total = $total + $total_line; @endphp @endforeach
# Cod. Interno Descripción Categoria Inventario actual Costo Costo Total Precio de venta Marca F. vencimiento Almacén
{{$loop->iteration}} {{$value->item->internal_id ?? ''}} {{$value->item->description ?? ''}} {{optional($value->item->category)->name}} {{$value->stock}} {{$value->item->purchase_unit_price}} {{number_format($total_line, 6)}} {{$value->item->sale_unit_price}} {{ $value->item->brand->name }} {{ $value->item->date_of_due }} {{$value->warehouse->description}}
Costo Total de Inventario {{number_format($total, 6)}}
@else

No se encontraron registros.

@endif