@extends('layouts.app') @section('title', 'الأجهزة') @section('content')

الأجهزة

تسجيل جهاز جديد
@if($devices->count() > 0)
@foreach($devices as $device) @endforeach
# الجهاز النوع الموقع الحالة الصيانة التاريخ الإجراءات
{{ $device->id }} {{ $device->name }} @if($device->serial_number)
SN: {{ $device->serial_number }} @endif
{{ $device->device_type ?? 'غير محدد' }} @if($device->organization) {{ Str::limit($device->organization->name, 12) }}
@endif @if($device->unit) {{ Str::limit($device->unit->name, 12) }} @endif
@php $statusBadge = match($device->status) { 'active' => 'bg-success', 'inactive' => 'bg-secondary', 'under_maintenance' => 'bg-warning', 'out_of_service' => 'bg-danger', default => 'bg-secondary' }; $statusText = match($device->status) { 'active' => 'نشط', 'inactive' => 'غير نشط', 'under_maintenance' => 'تحت الصيانة', 'out_of_service' => 'خارج الخدمة', default => $device->status }; @endphp {{ $statusText }} {{ $device->maintenanceRecords->count() }} {{ $device->created_at->format('Y-m-d') }}
{{ $devices->links() }}
@else
لا توجد أجهزة

ابدأ بتسجيل جهاز جديد

تسجيل جهاز جديد
@endif
@endsection @push('scripts') @endpush