@extends('layouts.master_app') @section('title') Inventario @endsection @section('menu_tickets', 'here show') @section('css') @endsection @section('content')

Inventario {{$company_product->name}}

@include('partials.success') @foreach( $inventory as $item ) @endforeach
Fecha Cantidad
{{ $item->date }} {{ $item->quantity }} KG

RESUMEN

TOTAL INVENTARIO
{{$total_inventory}} kg
TOTAL SALIDAS
{{$total_sales}} kg
DISPONIBLE EN INVENTARIO
{{$total_inventory - $total_sales}} kg
@endsection @section('js') @endsection