@extends('includes.layout') @section('title', 'Welcome') @section('content')

Heatmap


@if($user->name === 'Superadmin')
@else @endif

Top Times

@foreach ($topFour as $topcount) @php $currentHour = date('H', strtotime($topcount->time)); $nextHour = date('g A', strtotime("+1 hour", strtotime($topcount->time))); @endphp

{{ $topcount->day }}, {{ $topcount->time }} - {{ $nextHour }}

{{ $topcount->max_count }} Tickets
@endforeach
@endsection