@extends('layouts.member-app') @section('page-title')

@lang($pageTitle)

@lang('modules.tickets.ticket') # {{ $ticket->id }}
@endsection @push('head-script') @endpush @section('other-section')
@csrf
@endsection @section('content')
@csrf

{{ $ticket->subject }}

{{ $ticket->created_at->toDayDateTimeString() }} • {{ ucwords($ticket->requester->name). ' <'.$ticket->requester->email.'>' }}
@forelse($ticket->reply as $reply)
@if(sizeof($reply->files) > 0)
    @forelse($reply->files as $file)
  • {{ $file->filename }}
    @if(is_null($file->external_link))    @endif {{ $file->created_at->diffForHumans() }}
  • @empty
  • @lang('messages.noFileUploaded')
  • @endforelse
@endif
@empty
@lang('messages.noMessage')
@endforelse
{{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush