@extends('layouts.app-admin') @section('title', 'Detail Ticket - ' . $ticket->ticket_code) @section('content')

Deskripsi Masalah

{{ $ticket->user->name }}
{{ $ticket->created_at->format('d M Y, H:i') }}
{!! nl2br(e($ticket->description)) !!}
@if ($ticket->replies->count() > 0)

Balasan ({{ $ticket->replies->count() }})

@foreach ($ticket->replies as $reply)
{{ $reply->user->name }}
@if ($reply->is_staff_reply) Staff @endif
{{ $reply->created_at->diffForHumans() }}
{!! nl2br(e($reply->message)) !!}
@endforeach
@endif @if ($ticket->status !== 'closed')

Balas Ticket

@csrf
@if ($errors->has('message'))
{{ $errors->first('message') }}
@endif
@endif

Informasi Ticket

#{{ $ticket->ticket_code }}
{{ $ticket->status_label }}
{{ $ticket->category_label }}
{{ $ticket->created_at->format('d M Y, H:i') }}
{{ $ticket->updated_at->format('d M Y, H:i') }}
@if ($ticket->replies->count() > 0)
{{ $ticket->replies->count() }}
@endif
Butuh bantuan lebih?
Jika masalah Anda belum terselesaikan, Anda dapat menghubungi tim support kami melalui:
@endsection @section('scripts') @endsection