@extends('layouts.app') @section('title', 'Ticket ' . $ticket->ticket_number) @section('content')
@include('admin.partials.sidebar')
@include('admin.partials.topbar')
Back to Tickets

{{ $ticket->ticket_number }}

{{ $ticket->subject }}

{{ $ticket->customer->name }} {{ $ticket->created_at->format('d M Y H:i') }}
{{ $ticket->description }}
@foreach($ticket->replies as $reply)
{{ $reply->author_name }} @if($reply->is_internal) Internal Note @endif
{{ $reply->created_at->format('d M Y H:i') }}
{{ $reply->message }}
@endforeach

Add Reply

@csrf

Ticket Details

@csrf
{{ ucfirst($ticket->priority) }}
{{ $ticket->category_label }}
@csrf
{{ $ticket->created_at->format('d M Y H:i') }}
@if($ticket->resolved_at)
{{ $ticket->resolved_at->format('d M Y H:i') }}
@endif

Customer

{{ $ticket->customer->name }}
{{ $ticket->customer->phone }}
View Customer Profile
@endsection