Reply to Ticket #{{ $ticket->st_no }}
Subject: {{ $ticket->st_subject }}
Issue Type: {{ $ticket->issueType->sit_name ?? 'N/A' }}
Customer: {{ $ticket->user->name ?? 'N/A' }}
Status: {{ $ticket->st_status }}
Issue Type: {{ $ticket->issueType->sit_name ?? 'N/A' }}
Customer: {{ $ticket->user->name ?? 'N/A' }}
Status: {{ $ticket->st_status }}
Description:
@if($ticket->attachments && $ticket->attachments->count() > 0)
{{ $ticket->st_description }}
Ticket Attachments:
@endif
-
@foreach($ticket->attachments as $attachment)
- {{ basename($attachment->sta_file_path) }} @endforeach
Transfer Ticket
@if($ticket->st_status !== 'Closed') @else @endif
Conversation History
@forelse($ticket->comments as $comment)No replies yet.
@endforelse @if($ticket->transfers && $ticket->transfers->count() > 0)Transfer History
-
@foreach($ticket->transfers as $transfer)
-
{{ $transfer->fromStaff->ul_name }}
transferred to
{{ $transfer->toStaff->ul_name }}
on {{ $transfer->stt_transferred_at ? \Carbon\Carbon::parse($transfer->stt_transferred_at)->format('d M Y h:i A') : $transfer->created_at->format('d M Y h:i A') }}
@if($transfer->stt_reason)
Reason: {{ $transfer->stt_reason }} @endif
@endforeach
{{ $comment->stc_comment }}
@if($comment->attachments && $comment->attachments->count() > 0)@foreach($comment->attachments as $attachment)-
{{ basename($attachment->stca_file_path) }}
@endforeach