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

{{ $unit->name }}

تعديل توليد باركودات للوحدة العودة
معلومات الوحدة
الاسم:

{{ $unit->name }}

الترميز:

{{ $unit->code }}

الترتيب:

{{ $unit->sequence }}

@if($unit->details)
التفاصيل:

{{ $unit->details }}

@endif
توليد الباركودات
توليد باركودات لجميع المواد في الوحدة

سيتم توليد باركودات لجميع المواد والأجهزة الموجودة في هذه الوحدة تلقائياً

المواد ({{ $unit->items->count() }})
@if($unit->items->count() > 0)
@foreach($unit->items->take(5) as $item)
{{ $item->name }}
{{ $item->code }}

{{ Str::limit($item->description, 50) }}

@endforeach
@if($unit->items->count() > 5) @endif @else

لا توجد مواد

@endif
الأجهزة ({{ $unit->devices->count() }})
@if($unit->devices->count() > 0)
@foreach($unit->devices->take(5) as $device)
{{ $device->name }}
{{ $device->serial_number }}

{{ $device->model }}

@endforeach
@if($unit->devices->count() > 5) @endif @else

لا توجد أجهزة

@endif
إحصائيات
{{ $unit->items->count() }}
المواد
{{ $unit->devices->count() }}
الأجهزة
@endsection