@section('page-title') {{ __('Raw Telemetry Data') }} @endsection @section('breadcrumbs') @endsection
@if($items->count() > 0) @foreach($items as $item) @endforeach @else @endif
{{ __('License Key') }} / {{ __('Activation') }} / {{ __('User Identifier') }} {{ __('Product') }} / {{ __('Version') }} {{ __('Data') }} {{ __('Flags') }} {{ __('Created At') }}

{{ $item->license_key }} / {{ $item->activation_identifier }} / {{ $item->user_identifier }}

@if($item->product) {{ $item->product->name }} @else {{ sprintf( __( 'Product Not Found #%d' ), $item->product_id ) }} @endif / {{ $item->product_version }}

{{ __('Data Type') }} = {{ $item->data_type }}
{{ __('Data Group') }} = {{ $item->data_group }}
@php($data = json_decode($item->data, true)) @if($data && is_array($data)) @foreach($data as $key => $value)
{{ $key }} = {{ is_array($value) ? implode(', ', $value) : $value }}
@endforeach @elseif($data && !is_array($data))
{{ __('Value') }} = {{ $data }}
@else - @endif
{{ __('Is Correct Format') }} = @if($item->is_correct_format) {{ __('Yes') }} @else {{ __('No') }} @endif
{{ __('License Key Exists') }} = @if($item->license_key_exists) {{ __('Yes') }} @else {{ __('No') }} @endif
{{ __('Product Exists') }} = @if($item->product_exists) {{ __('Yes') }} @else {{ __('No') }} @endif
{{ __('Product Version Exists') }} = @if($item->product_version_exists) {{ __('Yes') }} @else {{ __('No') }} @endif

{{ formatDatetime($item->created_at) }}

{{ __('No telemetry found') }}

{{ $items->links() }}
@include('common.modal-delete-item', ['name' => 'log']) @include('common.confirm-bulk-action') @include('common.confirm-purge-action')