@extends('layouts.app') @php // One card renderer for all three tabs — the tabs differ by which list they // hold, not by how a person is drawn. $tabs = [ ['key' => 'online', 'label' => 'Online', 'people' => $online, 'colour' => 'green', 'empty' => 'Nobody has the timer running right now.'], ['key' => 'break', 'label' => 'On-Break', 'people' => $break, 'colour' => 'yellow', 'empty' => 'Nobody has stepped away.'], ['key' => 'absent', 'label' => 'Not Logged-In yet', 'people' => $absent, 'colour' => 'secondary', 'empty' => 'Everyone has started today.'], ]; @endphp @section('header')