@extends('layouts.dashboard') @section('title', 'Manager Dashboard') @section('content')

Dashboard Data

Team Report Employee Review @if(!$myTasks->isEmpty())

📝 My Tasks for the Day

@foreach($myTasks as $task) @endforeach
Task Info Task Description

{{ $task->name }}

Assigned By: {{ $task->createdBy->name ?? 'N/A' }}

✅ Mark as Done
{!! nl2br(e($task->description)) !!}
@endif
@if(!$notifications->isEmpty())

⚠️ Overdue Follow-Ups

@foreach($notifications as $notification) @endforeach
Project Name Action

{{ $notification->data['project_name'] }}

Mark as Read Send Follow-Up
@endif @endsection