@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')

{{ __('Tickets') }}

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

{{ __('Reply') }}

@csrf @if($ticket->ticket_status_id==2) @else @endif

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

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

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

@foreach($reply->attachments as $attachment) @endforeach
@endforeach
@if($ticket->openedUser->role == 'admin') image @elseif($ticket->openedUser->role == 'staff') image @else image @endif
{{$ticket->openedUser->name}}
{{ $ticket->openedUser->display_role != null ? __($ticket->openedUser->display_role) : __($ticket->openedUser->role) }}
{{$ticket->created_at->diffForHumans()}}

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

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