@extends('layouts.app') @section('title', 'طلبات الخدمة - '.config('app.name')) @section('content')

طلبات الخدمة والصيانة

@foreach($orders as $o) @endforeach
المرجع النوع الأولوية الحالة الفني مدفوعة
{{ $o->reference_number }} {{ match($o->service_type) { 'install' => 'تركيب', 'maintenance' => 'صيانة', 'repair' => 'إصلاح', default => $o->service_type } }} {{ $o->priority === 'urgent' ? 'عاجل' : 'عادي' }} {{ match($o->status) { 'open' => 'مفتوح', 'assigned' => 'مسند لفني', 'in_progress' => 'قيد التنفيذ', 'completed' => 'مكتمل', 'cancelled' => 'ملغى', default => $o->status } }} {{ $o->assignedTechnician?->name ?? '—' }} {{ $o->is_paid_service ? 'نعم' : 'لا' }} عرض
{{ $orders->links() }}
@endsection