@extends('layouts.app') @section('title', 'تفاصيل النوع') @section('content')

{{ $type->name }}

تعديل العودة
معلومات النوع
{{ $type->name }}
{{ $type->code }}
@if($type->is_active) نشط @else غير نشط @endif
{{ $type->items->count() }}
@if($type->description)
{{ $type->description }}
@endif
المواد ({{ $type->items->count() }})
@if($type->items->count() > 0)
@foreach($type->items as $item) @endforeach
اسم المادة الكمية الموقع الإجراءات
{{ $item->name }}
{{ $item->code }}
{{ $item->quantity }} {{ $item->organization->name }}
{{ $item->department->name }}
{{ $item->unit ? $item->unit->name : 'غير محدد' }}
@else

لا توجد مواد من هذا النوع

@endif
إحصائيات

{{ $type->items->count() }}

مادة

{{ $type->items->sum('quantity') }}

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