@extends('layouts.layout')
@include('components.js.confirm-action')
@include('components.js.cancel-action')
@include('components.js.alert-action')
@section('content')
@php
$columns = [
[
'label'=>'Presentacion',
'field'=>'idPres',
'select' => true,
'show_empty' => true,
'options' => $presentaciones,
'width' => 'w-50',
],
[
'label'=>'Cantidad',
'field'=>'cantidad',
'type' => 'number',
'width' => 'w-38',
],
[
'label'=>'Unidad de compra',
'field'=>'idUnidadCompra',
'select' => true,
'show_empty' => true,
'options' => $tipoUnidaMedida,
'width' => 'w-38',
],
[
'label'=>'Unidad de conversión',
'field'=>'idUnidadConversion',
'type' => 'number',
'width' => 'w-38',
],
];
@endphp
@endsection