@extends( ($theme =="white") ? 'layouts.white_theme': ( ($theme =="red") ? 'layouts.red_theme': (($theme =="green") ? 'layouts.green_theme': (($theme =="black") ? 'layouts.black_theme': ( ($theme =="blue") ?'layouts.blue_theme': 'layouts.yellow_theme' )))) ) @section('content')

{{ __('Email Tickets') }}

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

{{ __('Reply') }}


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

@csrf
@error('attachments.*')
{{ $message }}
@enderror {{ __('The attachments must be a file of type: ') }}{{ $extension }}.
@{{ error_message }}
@foreach($ticket_reply as $reply)
@if ($reply->replied_staff_id != null) @if ($reply->repliedUser->role == 'admin') image @else image @endif @else image @endif
{{$reply->replied_user_name}}
@if ($reply->replied_staff_id != null) {{ $reply->repliedUser->display_role != null ? __($reply->repliedUser->display_role) : __($reply->repliedUser->role) }} @else {{$ticket->from_email}} @endif
{{$reply->created_at->diffForHumans()}}
@if (env('APP_ENV') != 'demo')
@csrf @method('DELETE')
@endif

{!!$reply->message!!}.

@foreach($reply->attachments as $attachment) @endforeach
@endforeach
image
{{$ticket->from_name}}
{{$ticket->from_email}}
{{$ticket->created_at->diffForHumans()}}

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

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