@php $configData = Helper::appClasses(); @endphp @extends('layouts/layoutMaster') @section('title', 'Home') @section('content')

تفاصيل التذكرة

التفاصيل

العنوان: {{ $ticket->title }}

الوصف: {{ $ticket->description }}

الحالة: {{ ucfirst($ticket->status) }}

الأولوية: {{ ucfirst($ticket->priority) }}

رقم الموظف: {{ $ticket->employee->name }}

المنتج: {{ $ticket->product->name }}

@if ($ticket->file_path)

الملف: تحميل

@endif
تحديث الحالة
@csrf @method('PATCH')
التعليقات
@csrf

@if ($ticket->comments->isEmpty())

لا توجد تعليقات حتى الآن.

@else
    @foreach ($ticket->comments as $comment)
  • {{ $comment->user->name }} ({{ $comment->created_at->format('Y-m-d H:i') }})

    {{ $comment->comment }}

  • @endforeach
@endif
@endsection