Pendientes: {{ $receivedPending }} Firmados: {{ $receivedSigned }}
search
@if (request('received_search')) @endif @if (request('received_signature_status')) @endif @if ($receivedPeriod) @endif
{{-- Filtros y PDF para móvil --}}
search
@if (request('received_search')) @endif @if (request('received_signature_status')) @endif @if ($receivedPeriod) @endif
{{-- VISTA MÓVIL --}}
@forelse ($receivedCharges as $charge)
Cargo #{{ $charge->n_charge }}
calendar_today {{ optional($charge->created_at)->format('d/m/Y H:i') }}
@include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ])
{{ $charge->interesado_label }}
{{ $charge->tipo_interesado }}
{{ Str::limit($charge->asunto, 100) }}
@include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, 'canReject' => true, ])
@empty
inbox No hay cargos recibidos.
@endforelse
{{-- VISTA ESCRITORIO --}}
@forelse ($receivedCharges as $key => $charge) @empty @endforelse
# No. cargo Interesado Asunto Estado Acciones
{{ $key + 1 }} {{ $charge->n_charge }}
{{ $charge->interesado_label }}
{{ $charge->tipo_interesado }}
{{ $charge->asunto }} @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) @include('charges.partials.item-actions', [ 'charge' => $charge, 'canSign' => true, 'canReject' => true, ])
No hay cargos recibidos.