@extends('admin.layouts.app') @section('title', 'Applications | PG Finsev') @section('page-title', 'Applications') @section( 'page-description', 'Manage and review client applications' ) @push('styles') @endpush @section('content')
Track application progress, KYC and payment status.
| Client | Application | KYC | Payment | Employment | Progress | Action |
|---|---|---|---|---|---|---|
|
{{
strtoupper(
substr(
$application->name,
0,
1
)
)
}}
{{
$application->name
}}
{{
$application->email
}}
|
@if($profileDone) Started @else Not Started @endif | @if( $kyc && $kyc->status === 'verified' ) Verified @elseif( $kyc && $kyc->status === 'rejected' ) Rejected @elseif($kyc) Pending @else Not Submitted @endif | @if( $payment && $payment->status === 'paid' ) Paid @elseif( $payment && in_array( $payment->status, [ 'created', 'pending' ] ) ) Pending @elseif( $payment && in_array( $payment->status, [ 'failed', 'cancelled', 'cancelled_by_user' ] ) ) Failed @else Not Paid @endif | @if($employmentDone) Completed @else Pending @endif |
{{ $progress }}% Complete
|
View |