@extends('emails.layout') @section('content')

Hello {{ $user->name }},

Your work report for {{ $report->created_at->format('d M, Y') }} has been updated.

{{ ucfirst($report->approval_status) }}
@if ($report->approval_status == 'rejected')

Your report was not approved. Please review the details and resubmit if necessary.

@else

Congratulations! Your work report has been approved by the administrator.

@endif

You can view the full details of your report and attendance history on your dashboard.

View Report @endsection