• {{ __('Admin') }}
  • {{ __('All Tickets') }}
  • {{ __('Ticket Detail') }}
  • {{$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' => ['admin.tickets.show', ['id' => $ticket->id]], 'method' => 'PATCH'])!!} {{-- {!!Form::open('admin/westlinks-support/update/'.$ticket->id), 'method' => 'PATCH'])!!} --}}
    {{Form::label('comment', 'Comment', ['class' => 'form-label dark:bg-slate-800 dark:text-slate-300'])}} {{Form::textarea('comment', null, ['class' => 'form-control bg-slate-200 dark:bg-slate-800 dark:text-slate-300 border-none', 'required'])}}
    {!!Form::close()!!}