@include('admin.layouts.sidebar')
Identify Status
| # |
User Name
|
User Email
|
Submited Date
|
Submited First Name
|
Submited Last Name
|
Document Type
|
Document
|
Action
|
@if(!empty($identify))
@foreach($identify as $identify)
| {{$loop->index+1}} |
{{$identify->name}} |
{{$identify->email}} |
{{$identify->updated_at}} |
{{$identify->verify_name}} |
{{$identify->verify_surname}} |
{{$identify->verify_kind}} |
Identify |
@if($identify->verify_approved == '')
Approve
Decline
@elseif($identify->verify_approved == 'Approved')
Approved
@else
Declined
@endif
|
@endforeach
@endif
@endsection