@extends('layouts.app') @section('content')
00:00:00

Current Work Session

@if($runningTimer)
Tracking: {{ $runningTimer->task->title }}
00:00:00
@else
No active timer. Select a task to start tracking.
@endif
{{ number_format($productivityScore) }}%
Productivity
{{ $dailyLog ? round($dailyLog->total_tracked_seconds / 3600, 1) : 0 }}h
Hours Today
@forelse($activeTasks as $task) @empty @endforelse
Task Name Project Status Actions
{{ $task->title }} {{ $task->project->name }} @if(!$runningTimer || $runningTimer->task_id != $task->id) @else TRACKING... @endif

Work Summary (Last 5 Days)

@foreach($recentLogs as $log)
{{ Carbon\Carbon::parse($log->work_date)->format('M d, Y') }}
{{ round($log->total_tracked_seconds / 3600, 1) }}h
@endforeach

Latest Notifications

@foreach($notifications as $notif)
{{ $notif->title }}
{{ $notif->created_at->diffForHumans() }}
@endforeach
@push('scripts') @endpush @endsection