search
@if (request('created_search')) @endif @if ($createdPeriod) @endif
{{-- VISTA MÓVIL --}}
@forelse ($createdCharges as $charge)
Cargo #{{ $charge->n_charge }} ({{ $charge->charge_period }})
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, ])
@empty
inbox No hay cargos creados.
@endforelse
{{-- VISTA ESCRITORIO --}}
@forelse ($createdCharges as $key => $charge) @empty @endforelse
# No. cargo Interesado Tipo 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])
No hay cargos creados.