@extends(template().'layouts.user') @section('title',trans('KYC Verification History')) @section('content')

@lang("KYC Verification History")

@if(count($userKyc) > 0)
@forelse($userKyc as $item) @empty @endforelse
@lang('SL') @lang('Type') @lang('Status') @lang('Submitted Date') @lang('Approved Date')
{{ '#' . loopIndex($userKyc) + $loop->index }} @lang($item->kyc_type) @if($item->status == 0) @lang('Pending') @elseif($item->status == 1) @lang('Accepted') @elseif($item->status == 2) @lang('Rejected') @endif {{ dateTime($item->created_at) }} @if($item->approved_at == null) @lang("N/A") @else {{ dateTime($item->approved_at) }} @endif
@else
Image Description

@lang("No kyc available to display.")

@endif
@lang("KYC Filter")
@endsection @push('script') @endpush