@extends('layouts.app') @section('title', 'Error Logs') @section('header', 'Biometric Error Logs') @section('subheader', 'Connection, sync, and mapping errors') @section('header-actions') Devices @endsection @section('content')
@forelse ($errorLogs as $error) @empty @endforelse
WhenDeviceTypeMessage
{{ $error->occurred_at?->format('d M H:i') ?? $error->created_at->format('d M H:i') }} {{ $error->device?->name ?? '—' }} {{ $error->type }} {{ $error->message }}
No errors logged. 🎉
{{ $errorLogs->links() }}
@endsection