@extends('admin.layouts.admin') @section('title') Admin | Investor Details @endsection @section('content')
| ID | {{ $user->id }} |
|---|---|
| Name | {{ $user->full_name }} |
| {{ $user->email }} | |
| Phone | {{ $user->phone ?? '-' }} |
| Date of Birth | {{ $user->dob ?? '-' }} |
| Address | {{ $user->address ?? '-' }} |
| Status | {{ ucfirst($user->status) }} |
| KYC Status | {{ ucfirst($user->kyc_status) }} |
| Created At | {{ $user->created_at }} |
| Updated At | {{ $user->updated_at }} |
| File | Status |
|---|---|
| {{ basename($doc->file_path) }} | {{ $doc->signed_status ? 'Approved' : 'Pending' }} |
No documents uploaded.
@endforelse