@extends('layouts.app') @section('title') Dashboard @endsection @section('content')

Welcome to your Dashboard

This is your dashboard where you can manage your tasks, routines, notes, and files.

Tasks

You have {{ $tasksCount }} tasks pending.

View Tasks
Routines

You have {{ $routinesCount }} routines scheduled today.

View Routines
Notes

You have {{ $notesCount }} notes saved.

View Notes
Files

You have {{ $filesCount }} files.

View Files
Recent Tasks
    @foreach($recentTasks as $task)
  • {{ $task->title }} {{ $task->status == 'to_do' ? 'To Do' : 'In Progress' }}
  • @endforeach
Today's Routines
    @foreach($todayRoutines as $routine)
  • {{ $routine->title }} {{ $routine->frequency }}
  • @endforeach
Recent Notes
    @foreach($recentNotes as $note)
  • {{ $note->title }}
  • @endforeach
Upcoming Reminders
    @foreach($upcomingReminders as $reminder)
  • {{ $reminder->title }} {{ $reminder->date->format('M d') }} {{ $reminder->time ? $reminder->time->format('H:i') : '' }}
  • @endforeach
@endsection