|
{{ $token->user?->name ?? '-' }}
{{ $token->user?->email ?? '-' }}
|
{{ $token->tenant?->company_name ?? '-' }} |
{{ $token->platform }}
|
{{ $token->parsed_device_name }}
@if($token->parsed_os_version)
{{ $token->parsed_os_version }}
@endif
@if($token->app_version)
@if($token->parsed_os_version) · @endif
App v{{ $token->app_version }}
@endif
|
{{ Str::limit($token->token, 30) }}
|
@if($token->is_active)
활성
@else
비활성
@endif
@if($token->last_error)
{{ $token->last_error }}
@endif
|
{{ $token->created_at?->format('Y-m-d H:i') ?? '-' }}
|
|