@extends('adminlte::page') @section('title', 'Validación Recaudo externo') @section('content_header')

Validación pendientes de transferencia recaudo local - Negativos

@stop @section('content')
@if (session('mensaje'))
{{session('mensaje')}}
@endif
@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@csrf
{!! Form::label('ano', 'Año del reporte') !!} {!! Form::select('ano', ['2021' => '2021', '2022' => '2022', '2023' => '2023', '2024' => '2024', '2025' => '2025', '2026' => '2026', '2027' => '2027', '2028' => '2028', '2029' => '2029', '2030' => '2030'],null ,['class'=>'form-select form-select-sm','placeholder' => 'Seleccione...']) !!} @error('ano') {{$message}} @enderror
{!! Form::label('periodo', 'Mes del reporte') !!} {!! Form::select('periodo', ['1' => 'Enero', '2' => 'Febrero', '3' => 'Marzo', '4' => 'Abril', '5' => 'Mayo', '6' => 'Junio', '7' => 'Julio', '8' => 'Agosto', '9' => 'Septiembre', '10' => 'Octubre', '11' => 'Noviembre', '12' => 'Diciembre'],null ,['class'=>'form-select form-select-sm','placeholder' => 'Seleccione...']) !!} @error('periodo') {{$message}} @enderror
@foreach($validacionnegativos as $validacionnegativos) @endforeach
Divipo Municipio Jurisdicción Vigencia Total reportado Valor 10% Valor transferido Valor pendiente por transferir
{{ $validacionnegativos->divipo }} {{ $validacionnegativos->autoridad }} {{ $validacionnegativos->jurisdiccion }} {{ $validacionnegativos->vigencia }} {{ $validacionnegativos->totalreportado }} {{ $validacionnegativos->valor10 }} {{ $validacionnegativos->valortransferido }} {{ $validacionnegativos->pendientetransferir }}
@stop @section('css') @endsection @section('js') @stop