@extends('layouts.app') @section('title', 'Meine Importe – NeoNail DB') @section('content')

Meine Importe

KI-Analysen deiner hochgeladenen Fotos

Neues Foto
@if($imports->isEmpty())

Noch keine Importe

Lade ein Foto hoch und lass die KI deinen Nagellack erkennen.

Jetzt importieren
@else
@foreach($imports as $import) @endforeach
Bild Ergebnis Status Datum
@if($import->result)
{{ $import->result['name'] ?? '—' }}
{{ $import->result['manufacturer'] ?? '' }}
@elseif($import->status === 'failed') {{ Str::limit($import->error_message, 60) }} @else wird analysiert… @endif
{{ $import->statusLabel() }} {{ $import->created_at->format('d.m.Y H:i') }}
{{ $imports->links() }}
@endif @endsection