@extends('admin.layouts.master') @section('css') @endsection @section('page-header')
@endsection @section('content'){{ $update->description }}
| النوع: | {{ ucfirst(str_replace('_', ' ', $update->type)) }} |
| الأولوية: | {{ ucfirst($update->priority) }} |
| الحالة: | {{ ucfirst(str_replace('_', ' ', $update->status)) }} |
| تم الإنشاء بواسطة: | {{ $update->createdBy->name ?? 'غير محدد' }} |
| مُعيَّن إلى: | {{ $update->assignedTo->name ?? 'غير محدد' }} |
| تاريخ الإنشاء: | {{ $update->created_at->format('Y-m-d H:i') }} |
| آخر تحديث: | {{ $update->updated_at->format('Y-m-d H:i') }} |
| تاريخ الاستحقاق: | {{ $update->due_date->format('Y-m-d') }} @if ($update->due_date->isPast() && $update->status != 'completed') متأخر @endif |