@if(auth()->user()->is_admin)
@endif
@if ((!auth()->user()->is_admin || request()->input('promoter')) && ($timeEntries))
{!! $chart->options['chart_title'] !!}
{!! $chart->renderHtml() !!}
|
Day
|
Total time
|
@foreach($dateRange as $date)
|
{{ $date }}
|
{{ gmdate("H:i:s", $timeEntries[$date] ?? 0) }}
|
@endforeach
@else
There is no any data currently.
@endif