{{ __('Fraud Case Details') }} - {{ $fraudCase->case_number }}

Back to List

Case Overview

Case Type
{{ ucfirst(str_replace('_', ' ', $fraudCase->type)) }}
Status
@switch($fraudCase->status) @case('pending') Pending Review @break @case('investigating') Under Investigation @break @case('confirmed') Confirmed Fraud @break @case('false_positive') False Positive @break @case('resolved') Resolved @break @endswitch
Risk Score
{{ $fraudCase->risk_score }}%
Reported Date
{{ $fraudCase->created_at->format('M d, Y H:i') }}
@if($fraudCase->transaction)

Transaction Details

Transaction ID
{{ $fraudCase->transaction->reference }}
Amount
${{ number_format($fraudCase->transaction->amount / 100, 2) }} {{ $fraudCase->transaction->currency }}
Type
{{ ucfirst($fraudCase->transaction->type) }}
Status
{{ ucfirst($fraudCase->transaction->status) }}
@endif

Risk Indicators

@if($fraudCase->risk_indicators)
    @foreach(json_decode($fraudCase->risk_indicators, true) as $indicator)
  • {{ $indicator }}
  • @endforeach
@else

No specific risk indicators recorded.

@endif
@if($fraudCase->investigator_notes || auth()->user()->can('manage_fraud_cases'))

Investigation Notes

@if($fraudCase->investigator_notes)
{{ $fraudCase->investigator_notes }}
@if($fraudCase->investigated_at)

Last updated: {{ $fraudCase->investigated_at->format('M d, Y H:i') }}

@endif @else

No investigation notes yet.

@endif
@endif
@can('manage_fraud_cases')

Update Status

@csrf @method('PATCH')
@endcan

Need Help?

If you have questions about this fraud case or need immediate assistance: