|
Date: {{ now()->format('d M Y') }}
{{ $garage->name ?? 'Garage' }}{{ $garage->address ?? '' }}
@if(!empty($garage->phone)) {{ $garage->phone }} @endif
@if(!empty($garage->email)) ยท {{ $garage->email }} @endif
Subject: Joining / Appointment Letter
Dear {{ $employee->name }}, We are pleased to appoint you as {{ $employee->category_name ?? 'Employee' }} in the {{ $employee->department_name ?? 'General Department' }} department at {{ $garage->name ?? 'our organization' }}. Your date of joining is {{ !empty($employee->join_date) ? \Carbon\Carbon::parse($employee->join_date)->format('d M Y') : 'N/A' }}. Your compensation will be PKR {{ number_format((float)($employee->salary_amount ?? 0), 2) }} on a {{ ucfirst($employee->salary_type ?? 'monthly') }} basis. You are expected to follow company policies, maintain confidentiality, and perform your responsibilities professionally. Your working hours are {{ (float)($employee->working_hours_per_day ?? 0) > 0 ? number_format((float)$employee->working_hours_per_day, 2).' hours/day' : 'as assigned by management' }}. Please sign this letter as acceptance of terms and return a signed copy to HR/Admin office. Employee Signature
{{ $employee->name }}
Authorized Signature
{{ $garage->name ?? 'Management' }}
|
@if(!empty($employeeImageSrc))
{{ strtoupper(mb_substr($employee->name ?? '?', 0, 1)) }}
@endif
{{ $employee->name }}
{{ $employee->category_name ?? 'Employee' }}
{{ !empty($employee->is_active) ? 'Active' : 'Inactive' }}
Employee Details
Code: {{ $employee->code ?: 'N/A' }}
Department: {{ $employee->department_name ?: 'N/A' }}
Phone: {{ $employee->phone ?: 'N/A' }}
Email: {{ $employee->email ?: 'N/A' }}
CNIC: {{ $employee->cnic ?: 'N/A' }}
Salary: PKR {{ number_format((float)($employee->salary_amount ?? 0), 2) }}
Type: {{ ucfirst($employee->salary_type ?? 'monthly') }}
Joining: {{ !empty($employee->join_date) ? \Carbon\Carbon::parse($employee->join_date)->format('d M Y') : 'N/A' }}
|