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

{{ $department->name }}

توليد باركودات للقسم تعديل
معلومات القسم
{{ $department->name }}
{{ $department->code }}
@if($department->organization) {{ $department->organization->name }} @else - @endif
@if($department->parent) {{ $department->parent->name }} @else قسم رئيسي @endif
{{ $department->sequence }}
توليد الباركودات
توليد باركودات لجميع المواد في القسم

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

الشعب ({{ $department->sections->count() }})
إضافة شعبة
@if($department->sections->count() > 0)
@foreach($department->sections as $section) @endforeach
الاسم الترميز التفاصيل الإجراءات
{{ $section->name }} {{ $section->code }} {{ Str::limit($section->details, 50) }}
@else

لا توجد شعب مضافة بعد

إضافة شعبة جديدة
@endif
@if($department->children->count() > 0)
الأقسام الفرعية ({{ $department->children->count() }})
@foreach($department->children as $child)
{{ $child->name }}
{{ $child->code }}
{{ $child->units->count() }} شعبة
@endforeach
@endif
إحصائيات

{{ $department->sections->count() }}

شعبة

{{ $department->children->count() }}

قسم فرعي
معلومات التاريخ
  • الرقم: {{ $department->id }}
  • تاريخ الإنشاء:
    {{ $department->created_at->format('Y-m-d H:i') }}
    {{ $department->created_at->diffForHumans() }}
  • آخر تحديث:
    {{ $department->updated_at->format('Y-m-d H:i') }}
    {{ $department->updated_at->diffForHumans() }}
@endsection