@extends('layouts.app') @section('content') @include('ajustesinventario.partials.style')
@include('layouts.partials.session')
@csrf {{-- token --}}
Guardar ajuste

Productos


@if($productos->count() > 0)
@foreach($productos as $producto) @endforeach
Producto Cantidad Umbral Unidad Precio costo Margen ganancia ( % ) Precio final
{{$producto->nombre}}
@if($producto->id_categoria != null) {{$producto->categoria->nombre}} @else N/A @endif
- +
{{$producto->umbral_existencias}} {{$producto->unidad_medida}} @if ($negocio->can_uptade_price_inventory == "on") @else ${{number_format($producto->precio_costo)}} @endif @if ($negocio->can_uptade_price_inventory == "on") @else {{number_format($producto->ganancia)}}% @endif @if ($negocio->can_uptade_price_inventory == "on") @else ${{number_format($producto->precio_final)}} @endif
@else
No hay productos registrados.

Registrar mi primer producto
@endif
@endsection @section('scripts') @endsection