@if(count($tickets))
{{ __('Ticket Number') }} | {{ __('Subject') }} | {{ __('Last Response') }} | {{ __('Priority') }} | {{ __('Status') }} | {{ __('Action') }} |
---|---|---|---|---|---|
{{ $ticket->ticket_number }} | {{ $ticket->subject }} | {{ date('Y-m-d',strtotime($ticket->updated_at)) }} | {{ @$ticket->priority->name }} |
@if($ticket->status == 1) {{ __('Open') }} @endif
@if($ticket->status == 2) {{ __('Closed') }} @endif
|
{{ __('View Details') }} |