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

{{ $ticket->title }}

{{ __('ticket.' . $ticket->statusName()) }}  {{ $ticket->created_at->diffForHumans() }} ยท {{ $ticket->requester->name }}
@if($ticket->status != App\Ticket::STATUS_CLOSED)
{{ Form::open(["url" => route("requester.comments.store",$ticket->public_token)]) }}
@if($ticket->status == App\Ticket::STATUS_SOLVED) {{ __('ticket.reopen') }} ? {{ Form::checkbox('reopen') }} @else {{ __('ticket.isSolvedQuestion') }} {{ Form::checkbox('solved') }} @endif

{{ Form::close() }}
@endif @include('components.ticketComments', ["comments" => $ticket->comments]) @endsection