{{ __('Total Hours Spent') }}
{{ $metrics['total_hours']['value'] }} @include('reports::partials/metric_change', ['change' => $metrics['total_hours']['change']])
{{ __('Avg. Hours Spent per Update') }}
{{ $metrics['avg_hours']['value'] }} @include('reports::partials/metric_change', ['change' => $metrics['avg_hours']['change']])
@if (count($table_times))
@foreach ($table_times as $table_time) @endforeach
{{ __('User') }} {{ __('Time Spent') }} {{ __('Avg. Time Spent per Update') }}
@if (!empty($table_time['user'])){{ $table_time['user']->getFullName() }}@endif {{ $table_time['time_spent'] }} {{ $table_time['time_avg'] }}
@endif @if (count($table_conv_times))
@foreach ($table_conv_times as $table_time) @endforeach
{{ __('Conversation') }} {{ __('Time Spent') }}
@if (!empty($table_time['id']))#{{ $table_time['number'] }} {{ $table_time['subject'] }}@endif {{ $table_time['time_spent'] }}
@endif @if (count($table_customer_times))
@foreach ($table_customer_times as $table_time) @endforeach
{{ __('Customer') }} {{ __('Time Spent') }}
@if (!empty($table_time['customer'])){{ $table_time['customer']->getFullName(true) }}@endif {{ $table_time['time_spent'] }}
@endif