@extends('layouts.app') @section('css') @endsection @section('content')
@include('flash::message')

Lista de Productos

Nuevo registro
@include('flash::message') @foreach ($errors->all() as $error)
Warning! {{ $error }}
@endforeach
@csrf
{!! Form::select('productTypeId',\App\Models\ProductType::whereTrash(false)->whereEnabled(true)->select(\DB::raw('name as productTypeId'), 'id')->pluck('productTypeId', 'id'),null,['class' => 'form-control multiselect-filtering', 'id' => 'productTypeId', 'placeholder' => '[ Seleccione ]'],) !!}
id Nombre Nombre Comercial Tipo de Producto Unidad de Medida Activo Acción
@include('products.modals') @endsection @section('scripts') @endsection