@if ($success)
{{ $success }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Full Scan

@error('barcode')
{{ $message }}
@enderror
@if($barcode)
Scanned Barcode:
{{ $barcode }}
@if($isFetchingApi)

Fetching product data...

Checking database and API

@endif @if($dataFound && !$showManualForm)
@if($apiImageUrl)
Product
@endif
✓ Product data found {{ $apiHit ? '(from API)' : '(from database)' }}
Title: {{ $title }}
@if($description)
Description:

{{ $description }}

@endif
@endif @if($showManualForm)
⚠ No product data found. Please enter manually:
@endif @if(($dataFound || $showManualForm) && !$isFetchingApi)
@endif @endif