@extends('layouts.admin') @section('title', 'Admin Dashboard | Smart Dermatology') @section('page_title', 'Overview') @section('page_subtitle', 'Monitor users, access levels, and recent activity.') @section('content')
Quick snapshot of latest accounts.
| Name | User Type | Joined | |
|---|---|---|---|
| {{ $user->name }} | {{ $user->email }} | {{ $user->user_type }} | {{ $user->created_at?->format('d M Y') }} |
| No users found yet. | |||
Latest AI results saved by users.
| User | Disease | Confidence | Time |
|---|---|---|---|
| {{ $analysis->user->name }} | {{ str_replace('_', ' ', $analysis->disease) }} | {{ number_format($analysis->confidence * 100, 2) }}% | {{ $analysis->created_at?->diffForHumans() }} |
| No analyses recorded yet. | |||