@extends('admin.layouts.app') @section('panel')

Claim Details

Client Name {{ $claim->client_name }}
Client Email {{ $claim->client_email }}
Client Phone {{ $claim->client_phone }}
Client Country {{ $claim->client_country }}
Amount Lost ${{ $claim->amount_lost }}
Date of Transaction {{ \Carbon\Carbon::parse($claim->date_of_transaction)->format('d M, Y') }}
Scammer Name {{ $claim->scammer_name }}
Method of Contact {{ $claim->method_of_contact }}
Type of Scam {{ $claim->type_of_scam }}
Scammer Site/Platform {{ $claim->scammer_site_platform }}
Payment Method {{ $claim->payment_method }}
Payment Processor Name {{ $claim->payment_processor_name }}
Transaction Reference {{ $claim->transaction_reference }}
Wallet Address {{ $claim->wallet_address ?? 'N/A' }}
Details of Scam {{ $claim->details_of_scam }}
Attachments
@if($claim->attachments) @else

No attachments available.

@endif
@endsection