{{-- File: resources/views/filament/modals/sampleline-history.blade.php Displays the last 10 Sampleline records in a table. --}} @props([ 'records' => [], ])
{{-- Using Filament's built-in table classes for a consistent look and feel --}}
@forelse ($records as $record) @empty @endforelse
Probenname Target Zellzahl gesamt Zellzahl lebend Verhältnis (%) Zeitpunkt
{{ $record->samplename ?? '-' }} {{ $record->targetname ?? '-' }} {{-- Format number for German locale with 2 decimal places --}} {{ !is_null($record->qpcr_count) ? number_format($record->qpcr_count, 2, ',', '.') : '-' }} {{ !is_null($record->qpcr_count_alive) ? number_format($record->qpcr_count_alive, 2, ',', '.') : '-' }} {{ !is_null($record->qpcr_count_rel) ? number_format($record->qpcr_count_rel, 2, ',', '.') : '-' }} {{ $record->created_at->format('d.m.Y H:i') }}
Keine Einträge in der Historie gefunden.