@extends('adminlayout.admin') @section('content')

KYCs / {{$data->name}}

  • Application ID: {{$data->user_id}}
  • Submited At: {{date_format($data->created_at,"d M ,Y H:i A")}}
Application Info

Submission date, approve date, status etc.

  • Submitted By
    UD01489
  • Submitted At
    {{date_format($data->created_at,"d M ,Y H:i A")}}
  • Status
    {{$st}}
  • Last Checked
    {{substr(App\Models\User::find(getUserView($data->id)->user_id)->name,0,2)}}
    {{App\Models\User::find(getUserView($data->id)->user_id)->name}}
  • Last Checked At
    {{date_format(getUserView($data->id)->created_at,"d M, Y H:i a")}}
Uploaded Documents ({{$data->user_kyc->kyc_status==1?'Active':'Inactive'}})

Here is user uploaded documents.

  • Document Type
  • Aadhar number
    {{$data->user_kyc->aadhar_no }}
  • Front Side
    @if($data->user_kyc->aadhar_front_image)
    @else
    @endif
  • Back Side
    @if($data->user_kyc->aadhar_back_image)
    @else
    @endif
  • Document Type
  • PAN Number
    {{$data->user_kyc->pan_no }}
  • Front Side
    @if($data->user_kyc->pan_image)
    @else
    @endif
Applicant Information

Basic info, like name, phone, address, country etc.

  • Name
    {{$data->name}}
  • Email Address
    {{$data->email ?? ''}}
  • Phone Number
    {{$data->phone ?? ''}}
  • Date of Birth
    {{$dob}}
  • Full Address
    {{$addr}}
  • Country of Residence
    {{$addr}}
@endsection