@if($ch->client)
{{ $ch->client?->name ?? '未分類' }}
@endif
@if($ch->channel_type === 'line')
Group ID:{{ Str::mask($ch->line_group_id ?? '', '*', 10) }}
Token:{{ Str::mask($ch->line_token ?? '', '*', 20) }}
@else
{{ Str::mask($ch->webhook_url ?? '', '*', 50) }}
@endif
@foreach($ch->categories ?? [] as $cat)
{{ $cat }}
@endforeach
@if($ch->last_notified_at)
上次推送:{{ $ch->last_notified_at->format('Y-m-d H:i') }}
@else
尚未推送過
@endif