@extends('user.layouts') @section('css') @endsection @section('content')

{{ trans('user.menu.tickets') }}

@foreach ($tickets as $ticket) @endforeach
# {{ ucfirst(trans('validation.attributes.title')) }} {{ trans('common.status.attribute') }}
{{ $ticket->id }} {{ $ticket->title }} {!! $ticket->status_label !!} @if ($ticket->status === 2) {{ trans('common.view') }} @else {{ trans('common.open') }} @endif

{{ trans('user.ticket.service_hours') }}

  • {{ trans('user.ticket.online_hour') }} {{ trans('common.days.work') }} 23:00 - {{ trans('common.days.next') }} 11:00
    {{ trans('common.days.weekend') }} 21:00 - {{ trans('common.days.next') }} 12:00
  • {!! trans('user.ticket.service_tips') !!}
  • @if ($responseStats['avg_time'])
  • {{ trans('user.ticket.response_time_avg') }} {{ formatTime($responseStats['avg_time'], 2) }}
  • @endif
@endsection @section('javascript') @endsection