'Alex Doe',
'avatar_url' => 'https://i.pravatar.cc/40?u=alex'
];
$team_members = [
['full_name' => 'Samantha Bright', 'avatar_url' => 'https://i.pravatar.cc/40?u=samantha', 'status' => 'submitted'],
['full_name' => 'Leo Valdez', 'avatar_url' => 'https://i.pravatar.cc/40?u=leo', 'status' => 'pending', 'detail' => '2h 15m remaining'],
['full_name' => 'Mei Lin', 'avatar_url' => 'https://i.pravatar.cc/40?u=mei', 'status' => 'missed'],
['full_name' => 'Kenji Tanaka', 'avatar_url' => 'https://i.pravatar.cc/40?u=kenji', 'status' => 'ooo'],
['full_name' => 'Fatima Ahmed', 'avatar_url' => 'https://i.pravatar.cc/40?u=fatima', 'status' => 'submitted'],
];
function getStatusIndicator($status) {
$icon_path = __DIR__ . '/assets/icons/';
switch ($status) {
case 'submitted':
return '' . file_get_contents($icon_path . "check.svg") . '';
case 'pending':
return '' . file_get_contents($icon_path . "clock.svg") . '';
case 'missed':
return '' . file_get_contents($icon_path . "x.svg") . '';
case 'ooo':
return '' . file_get_contents($icon_path . "palm.svg") . '';
default:
return '';
}
}
?>