Cargos enviados
{{ $sentTotal }} Pendientes: {{ $sentPending }} Firmados: {{ $sentSigned }}
@include('charges.forms.filter')
@if (request('search')) @endif @if (request('signature_status')) @endif @if ($sentPeriod) @endif
{{-- Filtros y PDF para móvil --}}
@include('charges.forms.filter')
@if (request('search')) @endif @if (request('signature_status')) @endif @if ($sentPeriod) @endif
{{-- VISTA MÓVIL --}}
@forelse ($sentChargesFiltered as $charge)
Cargo
#{{ $charge->n_charge }}
{{ optional($charge->created_at)->format('Y-m-d H:i') }}
@include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ])
Interesado
{{ $charge->interesado_label }}
{{ $charge->tipo_interesado }}
Asunto
{{ $charge->asunto }}
@include('charges.partials.item-actions', [ 'charge' => $charge, 'canEdit' => true, ])
@empty
No hay cargos enviados.
@endforelse
{{-- VISTA ESCRITORIO --}}
@forelse ($sentChargesFiltered as $key => $charge) @empty @endforelse
# No. cargo Fecha Interesado Asunto Asignado a Estado Acciones
{{ $key + 1 }} {{ $charge->n_charge }} ({{ $charge->charge_period }})
{{ optional($charge->created_at)->format('Y-m-d') }}
{{ optional($charge->created_at)->format('H:i') }}
{{ $charge->interesado_label }}
{{ $charge->tipo_interesado }}
{{ $charge->asunto }} @if ($charge->signature?->assignedTo) {{ strtolower($charge->signature->assignedTo->name) }} @else No asignado @endif @include('charges.partials.status-badge', [ 'status' => $charge->signature?->signature_status, ]) @include('charges.partials.item-actions', [ 'charge' => $charge, 'canEdit' => true, ])
No hay cargos enviados.