@extends('layouts.app') @section('content')
@if (isset($accion)) @if ($accion == 'archivo') @endif @else @endif
Conciliación Asociación Solidarista
{!! Form::open([ 'url' => 'conciliar_planilla', 'method' => 'POST', 'enctype' => 'multipart/form-data', 'role' => 'form', 'id' => 'frmDatos', ]) !!}
{{-- @dump($id_planilla) --}}
@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')
@endif @else
@endif
{!! Form::close() !!}
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection @section('script') @endsection