@extends('layouts.app') @section('title', 'البحث عن الباركود') @section('content')
قيمة الباركود المدخلة: {{ $barcodeValue }}
اسم المادة:
{{ $barcode->item->name ?? 'غير محدد' }}
الترميز:
{{ $barcode->item->code ?? 'غير محدد' }}
قيمة الباركود:
{{ $barcode->barcode_value }}
نوع الباركود:
{{ $barcode->barcode_type == 'code128' ? 'Code 128' : 'QR Code' }}
حالة الطباعة:
@if($barcode->printed)
مطبوع
@if($barcode->printed_at)
{{ $barcode->printed_at->format('Y-m-d H:i') }}
@endif
@else
غير مطبوع
@endif
تاريخ التوليد:
{{ $barcode->generated_at->format('Y-m-d H:i') }}