@extends('layouts.app') @section('title', 'Temperature Logs') @section('content')
| Time | Location | Reading | Range | Status | By |
|---|---|---|---|---|---|
| {{ $log->logged_at->format('h:i A') }} | {{ $log->location }} | {{ $log->reading }}°{{ $log->unit }} | {{ $log->min_safe ?? '-' }} to {{ $log->max_safe ?? '-' }} | {{ $log->is_within_range ? '✅ OK' : '⚠️ Out of range' }} | {{ $log->user->name }} |
| No readings logged for this date. | |||||