@extends('layouts/app') @section('css') @stop @section('content')
@csrf
@php $region = Config('config.region.value'); @endphp @if (Auth::user()->userIsHQBranchs()) @else @endif
@if (Auth::user()->userIsHQBranchs()) @else @endif
@if (Session::has('error'))
Note:
@foreach(Session::get('error') as $err) {{ $err }}
@endforeach @php Session::forget('error'); @endphp
@endif
@if (!empty($reports)) @foreach ($reports as $key => $report) @foreach ($report as $rep) @php $day = \Carbon\Carbon::parse($rep['date'])->format('l'); @endphp @endforeach @endforeach
{{ $key }}
Terminal ID Date Day Sign on Sign off Sales
{{ $rep['terminal'] }} {{ $rep['date'] }} {{ $day }} {{ ($rep['is_late_signon'] && $day != 'Thursday') ? '*' : '' }} {{ $rep['signon'] ? $rep['signon'] : '*---:---'}} {{ ($rep['is_early_signoff'] && $day != 'Thursday') ? '#' :'' }} {{ $rep['signoff'] ? $rep['signoff'] : '#---:---' }} {{ number_format($rep['amount'],2,'.',',') }}
@else

No data found

@endif
Note:
[ * ] = SSK late Sign On [ # ] = SSK early Sign off
[ --:-- ] = SSK not Sign On / Sign Off

Please refer to Agency Operating Hours as follow:
Day Operating hours Things to note
Monday 9am - 2pm -
Tuesday 9am - 5pm 8am - 7pm if it's a Special Draw Day
Wednesday 8am - 7pm Draw day
Thursday Official rest day Some outlets may choose to operate, usually from 9am - 2pm
Friday 9am - 5pm -
Saturday 8am - 7pm Draw day
Sunday 8am - 7pm Draw Day
@endsection @section('js') @stop