⚠️ TEMPORARY MONITORING REPORT
This report was generated by temporary web endpoints created for integration testing.
These endpoints should be removed after testing is complete.
📊 Report Data
@if (is_array($data))
@foreach ($data as $key => $value)
{{ ucwords(str_replace('_', ' ', $key)) }}:
@if (is_array($value) || is_object($value))
{{ json_encode($value, JSON_PRETTY_PRINT) }}
@elseif(is_bool($value))
{{ $value ? 'Yes' : 'No' }}
@else
{{ $value }}
@endif
@endforeach
@else
{{ json_encode($data, JSON_PRETTY_PRINT) }}
@endif
@if (isset($data['accounts']) && is_array($data['accounts']) && count($data['accounts']) > 0)
🏦 Account Details
| ID |
Merchant Location |
Account Name |
Type |
Institution |
Status |
Created |
@foreach ($data['accounts'] as $account)
| {{ $account['id'] ?? 'N/A' }} |
{{ $account['merchant_location_id'] ?? 'N/A' }} |
{{ $account['account_name'] ?? 'N/A' }} |
{{ $account['account_type'] ?? 'N/A' }} |
{{ $account['institution_name'] ?? 'N/A' }} |
{{ $account['status'] ?? 'N/A' }} |
{{ $account['created_at'] ?? 'N/A' }} |
@endforeach
@endif
@if (isset($data['configuration_issues']) &&
is_array($data['configuration_issues']) &&
count($data['configuration_issues']) > 0)
⚠️ Configuration Issues
@foreach ($data['configuration_issues'] as $issue)
- {{ $issue }}
@endforeach
@endif
@if (isset($data['connection_test']) && $data['connection_test'] === 'SUCCESS')
✅ Connection Test Successful
The Payrix-Plaid integration is working correctly.
@elseif(isset($data['connection_test']) && $data['connection_test'] === 'FAILED')
❌ Connection Test Failed
The Payrix-Plaid integration is experiencing issues.
@endif
🔧 System Information
Application:
{{ $app_name }}
Report Type:
Temporary Integration Monitoring
Environment:
{{ config('app.env', 'Unknown') }}
Timestamp:
{{ $timestamp }}