{{ __('Regulatory Report Details') }}

@if($report->file_path) Download Report @endif @if($report->status === 'pending_submission')
@csrf
@endif

Report Information

Report ID
{{ $report->report_id }}
Type
{{ strtoupper($report->type) }}
Status
@switch($report->status) @case('draft') Draft @break @case('pending_submission') Pending Submission @break @case('submitted') Submitted @break @case('failed') Failed @break @endswitch
Jurisdiction
{{ $report->metadata['jurisdiction'] ?? 'N/A' }}
Reporting Period
{{ \Carbon\Carbon::parse($report->reporting_period_start)->format('M d, Y') }} - {{ \Carbon\Carbon::parse($report->reporting_period_end)->format('M d, Y') }}
Generated
{{ $report->created_at->format('M d, Y H:i') }}
@if($report->summary)

Executive Summary

{!! nl2br(e($report->summary)) !!}
@if($report->metadata['total_transactions'] ?? false)
Total Transactions
{{ number_format($report->metadata['total_transactions']) }}
@if($report->metadata['total_amount'] ?? false)
Total Amount
${{ number_format($report->metadata['total_amount'] / 100, 2) }}
@endif
@endif
@endif @if($report->type === 'sar' && isset($report->metadata['suspicious_activities']))

Suspicious Activities

@foreach($report->metadata['suspicious_activities'] as $activity)

{{ $activity['type'] }}

{{ $activity['description'] }}

Risk Score: {{ $activity['risk_score'] ?? 'N/A' }}

@endforeach
@endif @if($report->metadata['include_details'] ?? false)

Included Transactions

@forelse($report->metadata['transactions'] ?? [] as $transaction) @empty @endforelse
Transaction ID Date Amount Type
{{ substr($transaction['id'], 0, 8) }}... {{ \Carbon\Carbon::parse($transaction['date'])->format('M d, Y') }} ${{ number_format($transaction['amount'] / 100, 2) }} {{ ucfirst($transaction['type']) }}
No transaction details available
@endif

Actions

@if($report->file_path) Download PDF @endif @if($report->status === 'pending_submission')
@csrf
@endif Back to Reports

Audit Trail

    @if($report->submitted_at)
  • Submitted to authority

    {{ $report->submitted_at->format('M d, Y H:i') }}
  • @endif
  • Report generated by {{ $report->generatedBy ? $report->generatedBy->name : 'System' }}

    {{ $report->created_at->format('M d, Y H:i') }}
@if($report->type === 'sar')

SAR Confidentiality

This report contains confidential information and must not be disclosed to the subject of the report or any unauthorized parties.

@endif