@extends('layouts.app') @section('title', 'المواد والأصول') @section('content')

المواد والأصول

إضافة مادة جديدة
@if($items->count() > 0)
@foreach($items as $item) @endforeach
# الاسم النوع الهيئة/القسم/الشعبة الكمية الباركودات الترميز الإجراءات
{{ $item->id }} {{ $item->name }} @if($item->details)
{{ Str::limit($item->details, 30) }} @endif
@if($item->item_type) {{ $item->item_type }} @endif @if($item->material_type)
{{ $item->material_type }} @endif
{{ Str::limit($item->organization->name, 15) }}
{{ $item->department ? Str::limit($item->department->name, 15) : 'غير محدد' }}
{{ $item->section ? Str::limit($item->section->name, 15) : 'غير محدد' }}
{{ $item->unit ? Str::limit($item->unit->name, 15) : 'غير محدد' }}
{{ $item->quantity }} {{ $item->barcodes->count() }} باركود {{ Str::limit($item->code, 25) }}
{{ $items->links() }}
@else
لا توجد مواد

ابدأ بإضافة مادة جديدة

إضافة مادة جديدة
@endif
@endsection @push('scripts') @endpush