@extends('layouts.admin') @section('admin')

Kyc Verification

@foreach($kycList as $index => $kyc) @endforeach
# Name ID Type ID Number Phone ID Images Status Action
{{ $index + 1 }} {{ $kyc->full_name }} {{ ucfirst($kyc->id_type) }} {{ $kyc->id_number }} {{ $kyc->phone }} @if($kyc->status == 'approved') Approved @elseif($kyc->status == 'rejected') Rejected @else Pending @endif
{{$kycList->links()}}
@endsection