@extends('layouts.app') @section('title', 'تفاصيل المادة') @section('content')

{{ $item->name }}

تعديل توليد باركودات
معلومات المادة
{{ $item->name }}
@if($item->item_type) {{ $item->item_type }} @else - @endif
@if($item->material_type) {{ $item->material_type }} @else - @endif
{{ $item->quantity }}
{{ $item->code }}
@if($item->details)
{{ $item->details }}
@endif
الموقع التنظيمي
@if($item->department) {{ $item->department->name }} @else غير محدد @endif
@if($item->section) {{ $item->section->name }} @else غير محدد @endif
@if($item->unit) {{ $item->unit->name }} @else غير محدد @endif
الباركودات ({{ $item->barcodes->count() }})
توليد باركودات
@if($item->barcodes->count() > 0)
@foreach($item->barcodes as $barcode) @endforeach
قيمة الباركود النوع الحالة التاريخ الإجراءات
{{ $barcode->barcode_value }} {{ $barcode->barcode_type }} @if($barcode->printed) مطبوع @else غير مطبوع @endif {{ $barcode->generated_at->format('Y-m-d') }}
@else

لا توجد باركودات لهذه المادة

توليد باركودات الآن
@endif
إحصائيات

{{ $item->quantity }}

الكمية

{{ $item->barcodes->count() }}

باركود
معلومات التاريخ
  • الرقم: {{ $item->id }}
  • تاريخ الإضافة:
    {{ $item->created_at->format('Y-m-d H:i') }}
    {{ $item->created_at->diffForHumans() }}
  • آخر تحديث:
    {{ $item->updated_at->format('Y-m-d H:i') }}
@endsection