{{-- @dump($id_planilla) --}}
@endif
@else
@endif
{!! Form::close() !!}
@if (isset($id_planilla) )
{!! Form::mselect(
'planilla',
$planillas,
isset($id_planilla) ? $id_planilla : null,
'Llave primaria de la tabla',
$errors,
6,
false,
true,
false,
'buscar_planilla()',
isset($accion) ? true : false,
) !!}
@else
{!! Form::mselect(
'planilla',
[],
isset($id_planilla) ? $id_planilla : null,
'Llave primaria de la tabla',
$errors,
6,
false,
true,
false,
'buscar_planilla()',
isset($accion) ? true : false,
) !!}
@endif
{!! Form::mDate(
'fecha',
isset($data) ? ($data != null ? $data->pago_planilla_fecha_pago_factura : null) : null,
'Fecha Consignación',
$errors,
6,
false,
true,
) !!}
{!! Form::mtextAr('observacion', null, 'Observación', $errors, 6) !!}
{!! Form::mMonedaFormato(
'valor',
isset($data) ? ($data != null ? $data->pago_planilla_valor_consignado : null) : null,
'Cobro Planilla Valor Consignado',
$errors,
6,
) !!}
@if (isset($accion))
@if ($accion == 'archivo')
-
@foreach ($errors->all() as $error)
- {{ $error }} @endforeach