@extends('layouts.admin') @section('content')
Promoter Attendance Reports
@if(auth()->user()->is_admin)
@if($errors->has('date_from'))
{{ $errors->first('date_from') }}
@endif
@if($errors->has('date_to'))
{{ $errors->first('date_to') }}
@endif
@endif @if ((!auth()->user()->is_admin || request()->input('promoter')) && ($timeEntries))

{!! $chart->options['chart_title'] !!}

{!! $chart->renderHtml() !!}
@foreach($dateRange as $date) @endforeach
Day Total time
{{ $date }} {{ gmdate("H:i:s", $timeEntries[$date] ?? 0) }}
@else

There is no any data currently.

@endif
@endsection @section('scripts') @parent {{-- --}} @if ($chart) {!! $chart->renderJs() !!} @endif @endsection