@extends('layouts.admin') @section('title', 'جزئیات شناسه کانال') @section('content') ویرایش
@csrf @method('DELETE')
کاربر
{{ $channelIdentity->endUser?->display_name ?: 'کاربر #'.$channelIdentity->end_user_id }}
موبایل کاربر
{{ $channelIdentity->endUser?->mobile ?: '-' }}
ربات
{{ $channelIdentity->botAccount?->name ?: '-' }}
نام کاربری
{{ $channelIdentity->username ? '@'.$channelIdentity->username : '-' }}
لینک عمومی
{{ $channelIdentity->public_link ?: '-' }}
اولین مشاهده
{{ $channelIdentity->first_seen_at?->format('Y-m-d H:i') ?: '-' }}
آخرین مشاهده
{{ $channelIdentity->last_seen_at?->format('Y-m-d H:i') ?: '-' }}

Sender ID

{{ $channelIdentity->sender_id ?: '-' }}

نام

{{ trim(($channelIdentity->first_name ?: '').' '.($channelIdentity->last_name ?: '')) ?: '-' }}

نام نمایشی

{{ $channelIdentity->display_name ?: '-' }}

وضعیت

{{ $channelIdentity->is_active ? 'فعال' : 'غیرفعال' }}

@endsection