@php $page = 'kyc' @endphp @php function getBadgeClass($status) { switch ($status) { case 'verified': return 'success'; case 'rejected': return 'danger'; default: return 'warning'; } } @endphp @extends('includes.layout') @section('content')

KYC Application History

KYC Applications History

@php $counter = 1; @endphp @forelse ($kycs as $item) @php $counter++; @endphp @empty

No KYC Application Request Found

@endforelse
S/N Client KYC Status Date Action
{{ $counter }} {{ optional($item->user)->name }} {{ Str::ucfirst($item->status) }} {{ $item->created_at->diffForHumans() }}
@endsection @push('scripts') @endpush