@php $staff = $review->staff; $employeeName = $staff?->user?->name ?? '—'; $employeeId = $staff?->displaySid() ?? ($staff?->user_id ?? '—'); $designation = $staff?->designation?->name ?? '—'; $department = $staff?->department?->name ?? '—'; $branch = $staff?->warehouse?->name ?? '—'; @endphp
{{ __('Back to Review') }} {{ __('Salary Review List') }}
{{ $orgName }}
@if($orgAddress)
{{ $orgAddress }}
@endif

{{ __('Salary Review Letter') }}

{{ __('Date') }} {{ $letterDate }}
{{ __('Review Type') }} {{ $review->review_type ?? '—' }}
{{ __('Effective From') }} {{ $effectiveDate }}

{{ __('To') }},
{{ $employeeName }}
{{ __('Employee ID') }}: {{ $employeeId }} · {{ __('Designation') }}: {{ $designation }}
{{ __('Department') }}: {{ $department }} · {{ __('Branch') }}: {{ $branch }}

{{ __('Dear') }} {{ $employeeName }},

{{ __('We are pleased to inform you that your salary has been reviewed and updated by the management of :org, effective from :date.', [ 'org' => $orgName, 'date' => $effectiveDate, ]) }} {{ $incrementSummary }} {{ __('The revised salary structure is shown below for your reference.') }}

@foreach($rows as $row) @endforeach
{{ __('Component') }} {{ __('Previous') }} {{ __('Revised') }} {{ __('Increase') }}
{{ $row['label'] }} {{ number_format($row['before'], 2) }} {{ number_format($row['after'], 2) }} @if(abs($row['diff']) < 0.005) +0.00 @else +{{ number_format($row['diff'], 2) }} @endif
@if(!empty($review->remarks))

{{ __('Remarks') }}: {{ $review->remarks }}

@endif

{{ __('Please acknowledge receipt of this letter. For any clarification, contact the HR department.') }}

{{ __('Employee Signature') }}
{{ $employeeName }}
{{ __('Authorized Signatory') }}
{{ $review->approvedBy?->name ?? __('HR / Management') }}
@if($review->approved_at)
{{ $review->approved_at->format('d M Y') }}
@endif