{{ __('Compliance Metrics') }}

Overall Compliance Score

{{ $metrics['overall_score'] ?? '94.5' }}%

+2.3% from last month

KYC Completion Rate

{{ $metrics['kyc_rate'] ?? '98.2' }}%

{{ $metrics['pending_kyc'] ?? '12' }} pending verifications

AML Alerts

{{ $metrics['aml_alerts'] ?? '23' }}

{{ $metrics['resolved_alerts'] ?? '18' }} resolved this week

Sanctions Hits

{{ $metrics['sanctions_hits'] ?? '2' }}

Requires immediate review

Compliance Score Trends

Compliance by Category

@foreach($categories ?? [ ['name' => 'KYC/CDD', 'score' => 96, 'color' => 'green'], ['name' => 'Transaction Monitoring', 'score' => 92, 'color' => 'blue'], ['name' => 'Sanctions Screening', 'score' => 98, 'color' => 'indigo'], ['name' => 'Regulatory Reporting', 'score' => 94, 'color' => 'purple'], ['name' => 'Record Keeping', 'score' => 90, 'color' => 'yellow'], ] as $category)
{{ $category['name'] }} {{ $category['score'] }}%
@endforeach

Risk Distribution

Recent Compliance Activities

@foreach($activities ?? [ ['activity' => 'KYC Review Completed', 'type' => 'KYC', 'risk' => 'Low', 'status' => 'Completed', 'date' => '2 hours ago'], ['activity' => 'Suspicious Transaction Flagged', 'type' => 'AML', 'risk' => 'High', 'status' => 'Under Review', 'date' => '3 hours ago'], ['activity' => 'Sanctions List Updated', 'type' => 'Sanctions', 'risk' => 'Medium', 'status' => 'Completed', 'date' => '5 hours ago'], ['activity' => 'CTR Report Generated', 'type' => 'Reporting', 'risk' => 'Low', 'status' => 'Submitted', 'date' => '1 day ago'], ['activity' => 'Customer Risk Assessment', 'type' => 'Risk', 'risk' => 'Medium', 'status' => 'In Progress', 'date' => '2 days ago'], ] as $activity) @endforeach
Activity Type Risk Level Status Date
{{ $activity['activity'] }} {{ $activity['type'] }} @php $riskColors = [ 'Low' => 'green', 'Medium' => 'yellow', 'High' => 'red' ]; $color = $riskColors[$activity['risk']] ?? 'gray'; @endphp {{ $activity['risk'] }} {{ $activity['status'] }} {{ $activity['date'] }}
@push('scripts') @endpush