@extends('FrontUser.layouts.app') @section('content')

{{ $ticket->subject }}

Status: {{ $ticket->status }}

{{ $ticket->message }}

@if($ticket->image_path) Ticket Image @endif

Replies

@foreach($ticket->replies as $reply)

{{ $reply->message }}

@if($reply->image_path) Reply Image @endif
@endforeach
@if($ticket->status !== 'closed')

Reply to Ticket

@csrf
@else
This ticket is closed.
@endif
@endsection