@extends('layouts.app'); @section('content') @include('_flash-alerts')

Administrar Especificaciones de Producto

Articulos->Items->Específicaciones
{{-- buscador y Filtros --}} Filtros
{{-- FIN buscador y Filtros --}}
Nuevo
@foreach ($specifications as $specify) @endforeach
Id Nombre Ayuda del Campo Valores Obligatorio Editable Por Acciones
{{ $specify->id }} {{ $specify->name }} {{ $specify->observation }} @if ($specify->type == 'list') @php $values = explode(',', $specify->alloweb_values); @endphp @endif @if ($specify->type == 'number') Solo números @endif @if ($specify->type == 'text') Cualquier valor @endif {{ $specify->mandatory ? 'Si' : 'No' }} @switch($specify->editable_by) @case('VENDOR_ONLINE') Proveedor ventas Online @break @case('VENDOR_RETAIL') Proveedor ventas Retail @break @case('ONLINE-RETAIL') Proveedor online-retail @break @case('VENDOR_ONLINE') Invisible para Proveedor @break @endswitch
@csrf @method('DELETE')
@endsection