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

{{ __($pageTitle) }}

@lang('modules.tickets.ticket') # {{ $ticket->id }}
@endsection @push('head-script') @endpush @section('other-section') {!! Form::open(['id'=>'updateTicket1','class'=>'ajax-form updateTicket','method'=>'POST']) !!}
{!! Form::close() !!} @endsection @section('content') {!! Form::open(['id'=>'updateTicket','class'=>'ajax-form','method'=>'POST']) !!}

{{ $ticket->subject }}

{{ $ticket->created_at->toDayDateTimeString() }} • {{ ucwords($ticket->requester->name). ' <'.$ticket->requester->email.'>' }}
{!! Form::hidden('status', $ticket->status, ['id' => 'status']) !!}
@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
@if($upload)
@else
@lang('messages.storageLimitExceedContactAdmin')
@endif
{!! Form::close() !!} {{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush