1. {{ __('Help') }}
  2. {{ __('All Tickets') }}
  3. {{ __('Help Ticket Details') }}

{{$ticket->subject}}

{{date('d M h:i A', strtotime($ticket->created_at))}}

{!!$ticket->description!!}

Comments:

@foreach($comments as $comment) @if($comment->public === true)
{{date('d M h:i A', strtotime($comment->created_at))}}
{!!$comment->html_body!!}
@endif @endforeach {!!Form::open(['route' => ['help.tickets.update', ['id' => $ticket->id]], 'method' => 'PATCH'])!!}
{{Form::label('comment', 'Comment', ['class' => 'form-label dark:bg-slate-800 dark:text-slate-300'])}} {{Form::textarea('comment', null, ['class' => 'border-none form-control dark:bg-slate-800 dark:text-slate-300', 'required'])}}
{!!Form::close()!!}
@livewire('footer-links')