Company Logo

🔔 Project Activity Reminder

Hello {{ $data['user_name'] }},

Role: {{ $data['role_label'] ?? 'Activity Owner' }}

Below is the summary of your project activities that require attention.

@if(! empty($data['overdue']))

⚠️ Overdue Tasks

These project activities are overdue. Please review and complete them as soon as possible.
@foreach($data['overdue'] as $item) @endforeach
Activity No Customer ID Customer Type Task Estimated Completion Days Overdue
{{ $item['activity_no'] }} {{ $item['customer_id'] }} {{ $item['customer'] }} {{ $item['activity_type'] }} {{ $item['task_description'] }} {{ $item['estimated_completed_at'] }} {{ abs($item['number_of_days']) }}
@endif @if(! empty($data['due_today']))

⚠️ Tasks Due Today

These project activities are due today. Please complete or update them before the end of the day.
@foreach($data['due_today'] as $item) @endforeach
Activity No Customer ID Customer Type Task Estimated Completion Days Left
{{ $item['activity_no'] }} {{ $item['customer_id'] }} {{ $item['customer'] }} {{ $item['activity_type'] }} {{ $item['task_description'] }} {{ $item['estimated_completed_at'] }} {{ $item['number_of_days'] }}
@endif @if(! empty($data['due_tomorrow']))

📅 Tasks Due Tomorrow

These project activities are due tomorrow. They are included as an early reminder.
@foreach($data['due_tomorrow'] as $item) @endforeach
Activity No Customer ID Customer Type Task Estimated Completion Days Left
{{ $item['activity_no'] }} {{ $item['customer_id'] }} {{ $item['customer'] }} {{ $item['activity_type'] }} {{ $item['task_description'] }} {{ $item['estimated_completed_at'] }} {{ $item['number_of_days'] }}
@endif

Thanks,
{{ config('app.name') }}