@extends('customer.layout') @section('content') @if($ticket->status=='closed')
Rate Support service
@if(empty($ticket->rate))
@csrf

rate==5) checked @endif /> rate==4) checked @endif /> rate==3) checked @endif /> rate==2) checked @endif /> rate==1) checked @endif />
@else
rate==5) checked @endif /> rate==4) checked @endif /> rate==3) checked @endif /> rate==2) checked @endif /> rate==1) checked @endif />
@endif
@endif
{{$ticket->title}}
    @foreach($ticket->messages as $message)
  • {{$message->user->name}}
    {{$message->user->name}}
    @if($message->created_by != auth()->id()) @if(empty($message->note)) Report @else reported @endif @endif {!!$message->message!!}
    {{$message->created_at ? $message->created_at->diffForHumans(): 'No Time'}}
  • @endforeach
@if($ticket->status!='closed')
@csrf
Close Ticket
@endif
@endsection