@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 Precio unitario Total
{{ $item->date }} {{ $item->quantity }} KG ${{number_format($item->unit_price,2) }} ${{number_format( $item->total,2) }}

RESUMEN

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