@extends('layouts.app') @section('title', 'API Transceivers') @section('breadcrumb')
Name & Description | API Client | Source (Receiver) | Target | Status | Actions | |
---|---|---|---|---|---|---|
{{ $transceiver->name }}
@if($transceiver->description)
{{ Str::limit($transceiver->description, 50) }}
@endif
|
@if($transceiver->apiClient)
{{ $transceiver->apiClient->name }}
ID: {{ Str::limit($transceiver->apiClient->client_id, 8) }}
@else
Not Set
@endif
|
@if($transceiver->receiver)
{{ $transceiver->receiver->name }}
/api/in/{{ $transceiver->receiver->endpoint }}
|
@if($transceiver->target)
{{ $transceiver->target->name }}
{{ Str::limit($transceiver->target->endpoint, 30) }}
|
{{ $transceiver->is_active ? 'Active' : 'Inactive' }}
@if($transceiver->auto_sync)
Auto Sync
@if($transceiver->sync_interval)
({{ $transceiver->sync_interval }}m)
@endif
@endif
@if($transceiver->direction === 'bidirectional')
Bidirectional
@endif
|
||