@extends('layouts.admin') @section('title', 'Analyses | Smart Dermatology') @section('page_title', 'Skin Analyses') @section('page_subtitle', 'Review uploaded images, predicted diseases, and the users behind them.') @push('styles') @endpush @section('content')
@forelse ($analyses as $analysis) @empty @endforelse
Image User Filename Disease Confidence Analyzed At Actions
Analyzed image
{{ $analysis->user->name }}
{{ $analysis->user->email }}
{{ $analysis->original_filename }} {{ str_replace('_', ' ', $analysis->disease) }} {{ number_format($analysis->confidence * 100, 2) }}% {{ $analysis->created_at?->format('d M Y h:i A') }}
@csrf @method('DELETE')
No analyses have been recorded yet.
@if ($analyses->hasPages())
{{ $analyses->links() }}
@endif
@endsection