{{ $ticket->subject }}

@csrf @method('PUT') @if($ticket->status == 'open') @else @endif

Description

{{ $ticket->created_at }}


{{ $ticket->description }}

Replies

Reply

@csrf
@foreach($ticketanswer as $reply) @if($reply->messageby == 'admin')
@else
@endif

@if($reply->messageby == 'admin') Support @else {{ $reply->ticket->user->name }} @endif

{{ $reply->created_at }}


{{ $reply->message }}

@endforeach