Review Attestation

{{ $attestation->employee_name }} - {{ $attestation->department->name }}

@if ($attestation->status === 'pending') Pending Review @elseif ($attestation->status === 'approved') Approved @else Rejected @endif

👤 Personal Information

Full Name

{{ $attestation->employee_name }}

@if ($attestation->middle_name)

Middle Name

{{ $attestation->middle_name }}

@endif

Payroll ID

{{ $attestation->payroll_id }}

💼 Work Information

Designation

{{ $attestation->designation ?: 'N/A' }}

Work Location

{{ $attestation->work_location ?: 'N/A' }}

Email

{{ $attestation->email ?: 'N/A' }}

Phone

{{ $attestation->phone_no }}

@if ($attestation->address)

Address

{{ $attestation->address }}

@endif

✍️ Signature Information

Employee Signature

{{ $attestation->employee_signature }}

Date of Signature

{{ $attestation->employee_signed_date->format('M d, Y') }}

📅 Submission Information

Submitted On

{{ $attestation->created_at->format('M d, Y H:i') }}

Year

{{ $attestation->year }}

@if ($attestation->status === 'rejected' && $attestation->rejection_reason)

Rejection Reason:

{{ $attestation->rejection_reason }}

@endif
@if ($attestation->status === 'pending')
@csrf
Cancel
@else @endif