Your Ticket Has Been Updated
Your ticket has been updated. You can reply to this ticket by clicking the link below:
{{ url("tickets/support/$id") }}
@php
$replies = DB::select("
SELECT comments.*, users.role_id, users.name
FROM comments
JOIN users ON comments.user_id = users.id
WHERE comments.ticket_id = :ticketId
", ['ticketId' => $id]);
@endphp
@foreach($replies as $reply)
-
{{ $reply->name }} @if($reply->role_id == 3 || $reply->role_id == 1)
(staff)
@endif
{{ $reply->comment }}
@endforeach
Thank you for using our support system.