@extends('admin.layouts.app') @section('content')

{{ __('events.viewpagetitle') }}

{{ __('common.back') }}

Event Title: {{ $event->event_name }}

Event Description: {{ $event->description }}

QR Endpoint: {{ $event->qr_endpoint }}

Total Scan Attempts: {{ $event->qrScanTotalAttempts() }}

Status: {!! $event->status == 1 ? 'Active' : 'Inactive' !!}

@if ($statistics->isNotEmpty())
{{-- --}} @foreach ($statistics as $stats) {{-- --}} @endforeach
Client User AgentClient Browser Client IP Address Client Platform Scan Attempts Updated On
{{ $stats->client_user_agent }}{{ $stats->client_browser }} {{ $stats->client_ipaddress }} {{ $stats->client_platform }} {{ $stats->scan_attempts }} {{ $stats->updated_at }}
@endif
@endsection