Log Search Search logs by player name or UUID.
@csrf
Search Logs
@if (!empty($inputname)) Search Results Displaying results for "{{ $inputname }}" @if ($data['characters'] ?? false)

{{ $data['characters']['firstname'] ?? 'N/A' }}_{{ $data['characters']['lastname'] ?? 'N/A' }}

@foreach([ 'UUID' => 'uuid', 'Admin LVL' => 'adminlvl', 'Money Hands' => 'money', 'Creation Date' => 'createdate', 'Bank account number' => 'bank', 'Bank account money' => 'bank_balance', 'Level' => 'lvl', 'Exp' => 'exp', 'Sim Cards' => 'sim', 'Wanted' => 'wanted', 'Fraction' => 'fraction', 'Fraction Lvl' => 'fractionlvl', 'Demorgan' => 'demorgan', 'Licenses' => 'licenses', ] as $label => $key) @endforeach
Property Value
{{ $label }} {{ $data['characters'][$key] ?? 'N/A' }}
@else

Account not found.

@endif @if (!empty($data['results']))
@foreach($data['results'] as $row) @endforeach
Logs Datetime Action
{{ $row['Logs'] ?? '' }} {{ $row['datetime'] ?? '' }} {{ $row['action'] ?? '' }}
{{-- Pagination --}}
@php $total = $data['recordsTotal'] ?? 0; $perPage = $perPage ?? 50; $currentPage = $page ?? 1; $lastPage = $perPage > 0 ? (int) ceil($total / $perPage) : 1; @endphp @if ($lastPage > 1) @for ($i = 1; $i <= $lastPage; $i++) @endfor @endif
@else
No results found.
@endif
@endif
@push('scripts') @endpush