@if (session('message')) @endif @if (session('error')) @endif
@csrf @method('GET')
@can('document sync') @endcan
@forelse ($documents as $document) @empty @endforelse
{{ __('Sl No') }}
{{ __('Country') }}
{{ __('Email') }}
{{ __('Passport') }}
{{ __('Status') }}
{{ __('Action') }}
# {{ $document->id }} {{ __(config('countries')[$document->country]['name']) }} {{ strtolower($document->data['acf']['email']) }} {{ strtoupper($document->data['acf']['passport_number']) }} @if ($document->status == 'PENDING_PAYMENT') {{ __('Pending payment') }} @elseif ($document->status == 'WAITING') {{ __('Waiting') }} @elseif ($document->status == 'IN_QUEUE') {{ __('In queue') }} @elseif ($document->status == 'PROCESSING') {{ __('Processing') }} @elseif ($document->status == 'COMPLETED') {{ __('Completed') }} @elseif ($document->status == 'REFUND') {{ __('Refund') }} @endif
@if ($document->trashed()) @can('document restore') @endcan @else @can('document show') @endcan @can('document delete') @endcan @can('document change-status') @endcan @can('document refund') @endcan @endif
page not found

{{ __('No results found.') }}

@push('scripts') @endpush