@extends('layouts.app') @section('contenido')

Ver existencia @can('existencias-list') @endcan

@if ($errors->any())
Oops! Hubo algunos problemas con tus datos.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@foreach ($existencias as $key => $existencia) @if($key == 0)
Nombre de producto: getProduct()->estilo}}@if($existencia->getProduct()->linea){{" - " . $existencia->getProduct()->linea->nombre}}@endif{{" - " . $existencia->getProduct()->nombre_corto}}">
@endif
Tienda* : @if($existencia->getTienda($existencia->tienda_id) ) @else @endif
Cantidad disponible* :
@endforeach

-

@endsection @section('js') @stop