{{ $ticket->name }}
{{ $ticket->created_at->format('M d, Y g:i A') }}
{!! nl2br(e($ticket->message)) !!}
@if($ticket->attachments->count() > 0)
@foreach($ticket->attachments as $attachment) {{ $attachment->file_name }} @endforeach
@endif
@foreach($ticket->replies as $reply)
@if($reply->staff_id) @else @endif
{{ $reply->staff_id ? $reply->staff->full_name : $reply->customer->name }} @if($reply->staff_id) STAFF @endif
{{ $reply->replied_at->format('M d, Y g:i A') }}
{!! $reply->message !!}
@if($reply->attachments->count() > 0)
@foreach($reply->attachments as $attachment) {{ $attachment->file_name }} @endforeach
@endif
@endforeach

Add Your Reply

@csrf
Click to upload files
Max 10MB per file