@extends('layouts.new_theme') @section('content')

{{ __('Tickets') }}

@include('common.demo') @include('common.errors')

{{ __('Reply') }}


{{ $ticket->subject }}

@csrf
@error('message')
{{ $message }}
@enderror
@error('attachments.*')
{{ $message }}
@enderror {{ __('The attachments must be a file of type: ') }}{{ $extension }}.
@foreach ($ticket_reply as $reply)
image
{{ str_replace('_', ' ', $reply->reply_user_name) }}
{{ $reply->created_at->diffForHumans() }}

#{{ $ticket->tid }} - {{ $ticket->subject }}

{!! $reply->message !!}

@if (env('APP_ENV') != 'demo')
@csrf @method('DELETE')
@endif
@foreach ($reply->attachments as $attachment) @endforeach
@endforeach
image
{{ str_replace('_', ' ', $ticket->user->first_name) }} {{ $ticket->user->last_name }}
{{ $ticket->created_at->diffForHumans() }}

#{{ $ticket->tid }} - {{ $ticket->subject }}
{!! $ticket->message !!}

@foreach ($ticket->attachments as $attachment) @endforeach
{{ $ticket_reply->links('pagination::bootstrap-4') }}
@endsection