@include('layouts.client_assign_manager')
Compliance
@foreach (['danger', 'warning', 'success', 'info'] as $msg)
@if(Session::has('alert-' . $msg))
{{ ucfirst(($msg == 'danger') ? "Error" : $msg) }}! {{ Session::get('alert-' . $msg) }}
@endif
@endforeach
@if($checkpoa == '0' || $checkpoi == '0')
Verify your identity
@endif
@if(count($documentlists) > 0)
Uploaded documents
@foreach($documentlists as $key=>$documentlist)
@if($documentlist->document_type == 'poa') Proof of Address @elseif($documentlist->document_type == 'poi') Proof of Identity @endif |
{{$documentlist->document_name}} |
@if($documentlist->extension == 'pdf')
@else
@endif
|
@if($documentlist->document_type == 'poa')
{{$documentlist->full_legal_name}}
@elseif($documentlist->document_type == 'poi')
{{$documentlist->id_no}}
@endif
|
@if($documentlist->status == "0")
Pending
@elseif($documentlist->status == "1")
Approved
@elseif($documentlist->status == "2")
Rejected
@endif
|
{{$documentlist->comment}} |
{{ date("d/m/Y",strtotime($documentlist->created_at)) }} {{ date("h:m:s",strtotime($documentlist->created_at)) }} |
@endforeach
@endif