Statistics:
- Total Forwarded: {{ number_format($apiTransceiver->total_forwarded) }}
- Total Logs: {{ $apiTransceiver->logs->count() }}
- Success Rate:
@if($apiTransceiver->logs->count() > 0)
{{ number_format(($apiTransceiver->logs->where('status', 'success')->count() / $apiTransceiver->logs->count()) * 100, 1) }}%
@else
N/A
@endif
- Created: {{ $apiTransceiver->created_at->format('M d, Y') }}
- Last Updated: {{ $apiTransceiver->updated_at->format('M d, Y H:i') }}
Schedule Types:
- Manual: Process data only when triggered manually
- Real-time: Process data immediately when received
- Hourly: Process data every hour(s)
- Daily: Process data every day(s)
Field Mapping:
Use JSON to map source fields to target fields. Leave empty to forward data as-is.
Processing Conditions:
Use JSON to specify conditions that data must meet to be forwarded.
Leave empty to forward all data.